Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for TreeWalker (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

        // Edit the copy so that IntelliJ can copy with it
        modifyXml(checkstyleIdeConfig, { xml ->
          // Add all the nodes from the fragment file
          Node treeWalker = xml.module.find { it.'@name' == 'TreeWalker' }
          xmlFragment.module.each { treeWalker.append(it) }
    
          // Change the checkstyle config to inline the path to the
          // suppressions config. This removes a configuration step when using
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 19:34:12 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle-api.xml

    <module name="Checker">
        <module name="SuppressionFilter">
            <property name="file" value="${config_loc}/suppressions.xml"/>
        </module>
        <module name="JavadocPackage"/>
    
        <module name="TreeWalker">
            <module name="JavadocStyle">
                <property name="checkFirstSentence" value="false"/>
                <property name="checkEmptyJavadoc" value="true"/>
            </module>
    
            <module name="JavadocType">
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 17 23:20:14 GMT 2022
    - 1.6K bytes
    - Click Count (0)
  3. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <property name="file" value="${config_loc}/suppressions.xml"/>
        </module>
        <!-- allows suppressing using the @SuppressWarnings("checkstyle:...") -->
        <module name="SuppressWarningsFilter"/>
        <module name="TreeWalker">
            <!-- Blocks -->
            <module name="EmptyBlock">
                <property name="option" value="statement"/>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 11 10:24:25 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/checkstyle.xml

        unfair. -->
      <module name="LineLength">
        <property name="max" value="140" />
        <property name="ignorePattern" value="^ *\* *https?://[^ ]+$" />
      </module>
    
      <module name="TreeWalker">
        <!-- Make the @SuppressWarnings annotations available to Checkstyle -->
        <module name="SuppressWarningsHolder" />
    
        <module name="AvoidStarImport" />
    
        <!-- Unused imports are forbidden -->
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
Back to Top