Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 131 for checkstyle (0.06 seconds)

  1. build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml

                value="A description and other related documentation for a package should be written up in the package-info.java" />
        </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"/>
    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)
  2. 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)
  3. .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)
  4. .github/workflows/submit-github-dependency-graph.yml

            DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 22:06:44 GMT 2026
    - 933 bytes
    - Click Count (0)
  5. .github/CONTRIBUTING.md

    and style in order to keep the code as readable as possible. Please also make
    sure your code compiles by running `./gradlew check`. Checkstyle failures
    during compilation indicate errors in your style and can be viewed in the
    `checkstyle-result.xml` file.
    
    Some general advice
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 17 04:16:26 GMT 2019
    - 1.4K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

            CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
            tasks.register("checkstyleApi", Checkstyle.class, task -> {
                task.source(extension.getDocumentedSource());
                // TODO: This is ugly
                task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml")));
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 01 05:52:34 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  7. build-tools-internal/build.gradle

      api "org.apache.httpcomponents:httpcore:${props.getProperty('httpcore')}"
      compileOnly "com.puppycrawl.tools:checkstyle:${props.getProperty('checkstyle')}"
      runtimeOnly "org.elasticsearch.gradle:reaper:$version"
      testImplementation "com.puppycrawl.tools:checkstyle:${props.getProperty('checkstyle')}"
      testImplementation "junit:junit:${props.getProperty('junit')}"
      testImplementation 'com.github.tomakehurst:wiremock-jre8-standalone:2.23.2'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = {
            id(buildTypeId(model))
            name = "Sanity Check"
            description = "Static code analysis, checkstyle, release notes verification, etc."
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            applyDefaults(
                model,
                this,
                "sanityCheck",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 25 20:21:47 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateRestSpecPlugin.java

    import org.gradle.api.Project;
    import org.gradle.api.provider.Provider;
    
    import java.io.File;
    
    public class ValidateRestSpecPlugin implements InternalPlugin {
        private static final String DOUBLE_STAR = "**"; // checkstyle thinks these are javadocs :(
    
        @Override
        public void apply(Project project) {
            Provider<ValidateJsonAgainstSchemaTask> validateRestSpecTask = project.getTasks()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  10. .gitignore

    out/
    
    # include shared intellij config
    !.idea/scopes/x_pack.xml
    !.idea/inspectionProfiles/Project_Default.xml
    !.idea/runConfigurations/Debug_Elasticsearch.xml
    !.idea/checkstyle-idea.xml
    
    # These files are generated in the main tree by IntelliJ
    benchmarks/src/main/generated/*
    
    # eclipse files
    .project
    .classpath
    .settings
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
Back to Top