generated from marchoeppner/nf-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.groovylintrc.json
27 lines (27 loc) · 898 Bytes
/
.groovylintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends" : "recommended",
"rules": {
"comments.ClassJavadoc": "off",
"formatting.Indentation": {
"spacesPerIndentLevel": 4,
"severity": "info"
},
"security.JavaIoPackageAccess": "off",
"security.SystemExit": "off",
"convention.CompileStatic": "off",
"unnecessary.UnnecessaryGetter": "off",
"convention.MethodReturnTypeRequired": "off",
"convention.MethodParameterTypeRequired": "off",
"convention.VariableTypeRequired": "off",
"exceptions.MissingNewInThrowStatement": "off",
"convention.NoDef": "off",
"design.ImplementationAsType": "off",
"unnecessary.UnnecessaryPublicModifier": "off",
"unnecessary.DuplicateStringLiteral": "off",
"basic.DeadCode": "off",
"formatting.LineLength": "off",
"NglParseError": {
"enabled": false
}
}
}