Skip to content

Commit

Permalink
chore: Install pre-commit hook for linting (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinw committed Jan 30, 2024
1 parent 0195e4b commit a105b8c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 204 deletions.
1 change: 0 additions & 1 deletion .github/templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ files:
- .github/workflows/codeql-analysis.yaml
- .github/workflows/pr-help.yaml
- .github/workflows/release.yaml
- .github/workflows/verify-release.yaml

values:
autoRelease: true
Expand Down
198 changes: 0 additions & 198 deletions .github/workflows/verify-release.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ tasks.named('coverallsJacoco') {
dependsOn jacocoAggregatedReport
}

//tasks.named('check') {
// dependsOn 'installKotlinterPrePushHook'
//}
tasks.create('check') {
dependsOn installKotlinterPrePushHook
}
2 changes: 1 addition & 1 deletion prop-all/src/test/kotlin/io/pleo/prop/objects/NullValue.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.pleo.prop.core.Prop
import javax.inject.Inject
import javax.inject.Named

@Suppress("unused")
@Suppress("unused", "UNUSED_PARAMETER")
class NullValue
@Inject
constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package io.pleo.prop.objects
import io.pleo.prop.core.Prop
import javax.inject.Inject

@Suppress("unused")
@Suppress("unused", "UNUSED_PARAMETER")
class UnnamedProp
@Inject
constructor(unnamedProp: Prop<String>)

0 comments on commit a105b8c

Please sign in to comment.