Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for configureIdeCheckstyle (0.59 seconds)

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

    <!-- There are some rules that we only want to enable in an IDE. These  -->
    <!-- are extracted to a separate file, and merged into the IDE-specific -->
    <!-- Checkstyle config by the `:configureIdeCheckstyle` task.           -->
    
    <module name="IdeFragment">
    
        <!-- See CONTRIBUTING.md for our guidelines on Javadoc -->
    
        <module name="MissingJavadocMethod">
            <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-tools-internal/src/main/groovy/elasticsearch.ide.gradle

      tasks.named('idea').configure {
        doFirst { throw new GradleException("Use of the 'idea' task has been deprecated. For details on importing into IntelliJ see CONTRIBUTING.md.") }
      }
    }
    
    tasks.register('configureIdeCheckstyle') {
      group = 'ide'
      description = 'Generated a suitable checkstyle config for IDEs'
    
      String checkstyleConfig = 'build-tools-internal/src/main/resources/checkstyle.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)
  3. CONTRIBUTING.md

    not work by default with the IntelliJ plugin, so instead an IDE-specific config
    file is generated automatically after IntelliJ finishes syncing. You can
    manually generate the file with `./gradlew configureIdeCheckstyle` in case
    it is removed due to a `./gradlew clean` or other action.
    
    IntelliJ should be automatically configured to use the generated rules after
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 07:32:01 GMT 2021
    - 36.5K bytes
    - Click Count (0)
Back to Top