Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SuppressWarningsFilter (0.07 seconds)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

        <module name="SuppressionFilter">
            <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)
  2. build-tools-internal/src/main/resources/checkstyle.xml

    <module name="Checker">
      <property name="charset" value="UTF-8" />
    
      <module name="SuppressionFilter">
        <property name="file" value="${config_loc}/checkstyle_suppressions.xml" />
      </module>
    
      <module name="SuppressWarningsFilter" />
    
      <!-- Checks Java files and forbids empty Javadoc comments. -->
      <!-- Although you can use the "JavadocStyle" rule for this, it considers Javadoc -->
      <!-- that only contains a "@return" line to be empty. -->
    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