Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ignorePattern (0.07 seconds)

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java

        /** Specify the visibility scope where Javadoc comments are not checked. */
        private Scope excludeScope;
    
        /** Specify pattern for types to ignore. */
        private Pattern ignorePattern = Pattern.compile("^$");
    
        /**
         * Specify the list of annotations that allow missed documentation.
         * Only short names are allowed, e.g. {@code Generated}.
         */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 5.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml

        </module>
    
        <!-- Use our fork of this Checkstyle rule, so that we can ignore test classes -->
        <module name="org.elasticsearch.gradle.internal.checkstyle.MissingJavadocTypeCheck">
            <property name="ignorePattern" value="^.*(Tests?|IT|TestCase)$"/>
            <property name="severity" value="warning"/>
            <message key="javadoc.missing" value="Types should explain their purpose" />
        </module>
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 18:58:39 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/checkstyle.xml

        suppress the check there but enforce it everywhere else. This prevents the list from getting longer even if it is
        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" />
    
    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