Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 56 for checkstyle (0.09 seconds)

  1. .idea/checkstyle-idea.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="CheckStyle-IDEA">
        <option name="configuration">
          <map>
            <entry key="active-configuration" value="PROJECT_RELATIVE:$PROJECT_DIR$/checkstyle_ide.xml:Elasticsearch" />
            <entry key="checkstyle-version" value="8.42" />
            <entry key="copy-libs" value="false" />
            <entry key="location-0" value="BUNDLED:(bundled):Sun Checks" />
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 961 bytes
    - Click Count (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle-api.xml

    Sterling Greene <******@****.***> 1666965083 -0400
    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-groovy.xml

    Jendrik Johannes <******@****.***> 1607501645 +0100
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.4K bytes
    - Click Count (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <module name="SimplifyBooleanReturn"/>
            <module name="StringLiteralEquality"/>
            <module name="UnnecessaryParentheses">
                <!-- defaults are too strict, see https://github.com/checkstyle/checkstyle/issues/10946 -->
    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)
  5. build-tools-internal/src/main/resources/checkstyle.xml

        docs, stripping the leading spaces. If the context is wider than 76
        characters then it'll need to scroll. This fails the build if it sees
        such snippets.
      -->
      <module name="org.elasticsearch.gradle.internal.checkstyle.SnippetLengthCheck">
        <property name="id" value="SnippetLength" />
        <property name="max" value="76" />
      </module>
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/CheckstylePrecommitPlugin.java

            checkstyleTask.configure(t -> t.dependsOn(project.getTasks().withType(Checkstyle.class)));
    
            // Apply the checkstyle plugin to create `checkstyleMain` and `checkstyleTest`. It only
            // creates them if there is main or test code to check and it makes `check` depend
            // on them. We also want `precommit` to depend on `checkstyle`.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 5.5K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/groovy/elasticsearch.ide.gradle

      }
    }
    
    tasks.register('configureIdeCheckstyle') {
      group = 'ide'
      description = 'Generated a suitable checkstyle config for IDEs'
    
      String checkstyleConfig = 'build-tools-internal/src/main/resources/checkstyle.xml'
      String checkstyleSuppressions = 'build-tools-internal/src/main/resources/checkstyle_suppressions.xml'
    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)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    checkstyle {
        buildLibs?.let {
            toolVersion = buildLibs.findVersion("checkstyle").get().requiredVersion
        }
        config = configFile("checkstyle.xml")
        val projectDirectory = layout.projectDirectory
        configDirectory = rules.elements.map {
            projectDirectory.dir(it.single().asFile.absolutePath).dir("checkstyle")
        }
    }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  9. build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java

     */
    
    package org.elasticsearch.gradle.internal.checkstyle;
    
    import com.puppycrawl.tools.checkstyle.StatelessCheck;
    import com.puppycrawl.tools.checkstyle.api.AbstractCheck;
    import com.puppycrawl.tools.checkstyle.api.DetailAST;
    import com.puppycrawl.tools.checkstyle.api.FileContents;
    import com.puppycrawl.tools.checkstyle.api.Scope;
    import com.puppycrawl.tools.checkstyle.api.TextBlock;
    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)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.collect-failed-tasks.gradle.kts

    import org.gradle.tooling.events.task.TaskOperationResult
    import java.io.Serializable
    import java.util.concurrent.CopyOnWriteArrayList
    
    /**
     * Register a build service that monitors compilation tasks and code quality tasks (Checkstyle/CodeNarc/detekt)
     * and reports them as TeamCity build problems.
     */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Apr 11 20:57:49 GMT 2025
    - 2.4K bytes
    - Click Count (0)
Back to Top