Path: blob/aarch64-shenandoah-jdk8u272-b10/langtools/make/conf/checkstyle-langtools.xml
32282 views
<?xml version="1.0"?>1<!DOCTYPE module PUBLIC2"-//Puppy Crawl//DTD Check Configuration 1.3//EN"3"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">45<!--6Checks for initial langtools code conventions, we are starting with7imports and import orders and this will grow to encompass other8violations over time.9-->1011<module name="Checker">1213<!-- Checks for whitespace. -->14<module name="FileTabCharacter">15<property name="fileExtensions" value=".java"/>16</module>1718<!-- Miscellaneous other checks. -->19<module name="RegexpSingleline">20<property name="format" value="\s+$"/>21<property name="minimum" value="0"/>22<property name="maximum" value="0"/>23<property name="message" value="Line has trailing spaces."/>24<property name="fileExtensions" value=".java .html"/>25</module>2627<module name="TreeWalker">28<!-- Checks for imports -->29<!--30<module name="AvoidStarImport"/>31<module name="IllegalImport"/>32-->33<module name="GenericWhitespace"/>34<module name="RedundantImport"/>35<module name="UnusedImports"/>36<module name="ImportOrder">37<property name="groups" value="java, javax, org, com"/>38<property name="ordered" value="true"/>39<property name="separated" value="true"/>40</module>41<module name="EmptyForInitializerPad">42<property name="option" value="space"/>43</module>44<module name="WhitespaceAfter"/>45</module>46</module>4748