Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for Checkstyle (0.05 seconds)

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

  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-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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

    }
    fun version(alias: String) = libs.findVersion(alias).get().toString()
    
    tasks.withType<Checkstyle>().configureEach {
      exclude("**/CipherSuite.java")
    }
    
    val checkstyleConfig = configurations.maybeCreate("checkstyleConfig")
    dependencies {
      add("checkstyleConfig", library("checkstyle")) {
        isTransitive = false
      }
    }
    
    configure<CheckstyleExtension> {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  10. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    .jbang/
    
    # Intellij
    *.ipr
    *.iml
    .idea
    !.idea/icon.png
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    
    # VSCode
    .vscode/
    
    # Mac
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Nov 14 10:54:20 GMT 2025
    - 209 bytes
    - Click Count (0)
Back to Top