Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Install pre-commit hook for linting #241

Merged
merged 3 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
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>)