Fix local execution of gradle tasks and line ending issues

This commit is contained in:
Christian Beikov 2024-11-13 16:43:34 +01:00
parent 0ca27a4e32
commit 9c96e84a58
2 changed files with 9 additions and 11 deletions

4
.gitattributes vendored
View File

@ -1,8 +1,8 @@
# By default, detect text files automatically, and use whatever line terminators make sense for the OS
* text=auto
* text=auto eol=lf
# Java files are text, and we want Java-friendly readable hunk headers for diff
*.java text diff=java
*.java text diff=java eol=lf
# Force LF/CRLF format for files that are known to require it.
*.sh text eol=lf

View File

@ -519,16 +519,14 @@ tasks.register( "ciCheck" ) {
group "verification"
description "Checks for CI environments"
dependsOn tasks.check
}
// These are already enforced by the formatChecks task
spotlessApply {
enabled = false
}
spotlessJavaApply {
enabled = false
}
enforceRules {
enabled = false
gradle.taskGraph.whenReady {
if ( it.hasTask( tasks.ciCheck ) ) {
// These are already enforced by the formatChecks task
tasks.spotlessApply.enabled = false
tasks.spotlessJavaApply.enabled = false
tasks.enforceRules.enabled = false
}
}