Skip to content

Commit cbf6ffb

Browse files
committed
Fix lint issues
1 parent 16eacbd commit cbf6ffb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ allprojects {
3232
kotlin {
3333
ktfmt(libs.versions.ktfmt.get()).googleStyle()
3434
target("**/*.kt")
35-
targetExclude("$buildDir/**/*.kt")
35+
targetExclude("$projectDir/build/**/*.kt")
3636
licenseHeaderFile(rootProject.file("spotless/copyright.txt"))
3737
}
3838
kotlinGradle {
3939
ktfmt(libs.versions.ktfmt.get()).googleStyle()
4040
target("**/*.kts")
41-
targetExclude("$buildDir/**/*.kts")
41+
targetExclude("$projectDir/build/**/*.kts")
4242
licenseHeaderFile(rootProject.file("spotless/copyright.txt"), "(^(?![\\/ ]\\*).*$)")
4343
}
4444
format("xml") {

composeApp/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import com.android.build.gradle.internal.lint.AndroidLintAnalysisTask
17-
import com.android.build.gradle.internal.lint.LintModelWriterTask
1816
import java.util.Properties
1917

2018
plugins {

0 commit comments

Comments
 (0)