- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for targetExclude (0.07 seconds)
-
build-logic/build.gradle.kts
id("com.diffplug.spotless") version "8.4.0" } configure<com.diffplug.gradle.spotless.SpotlessExtension> { kotlin { target("src/**/*.kt") ktlint() } kotlinGradle { target("*.kts") targetExclude("build/**/*.kts") ktlint() } } repositories { google() mavenCentral() gradlePluginPortal() } dependencies { implementation(libs.gradlePlugin.kotlin)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 18 18:05:02 GMT 2026 - 1.1K bytes - Click Count (0) -
benchmarks/build.gradle
// IDEs can sometimes run annotation processors that leave files in // here, causing Spotless to complain. Even though this path ought not // to exist, exclude it anyway in order to avoid spurious failures. targetExclude 'src/main/generated/**/*.java' }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 08 22:04:23 GMT 2021 - 2.5K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts
} configure<com.android.build.api.dsl.Lint> { xmlReport = true checkDependencies = true } configure<com.diffplug.gradle.spotless.SpotlessExtension> { kotlin { target("src/**/*.kt") targetExclude("**/kotlinTemplates/**/*.kt") ktlint() suppressLintsFor { step = "ktlint" shortCode = "standard:mixed-condition-operators" } } kotlinGradle { target("*.kts") ktlint()
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)