-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodenarc.ruleset
More file actions
507 lines (480 loc) · 15.4 KB
/
codenarc.ruleset
File metadata and controls
507 lines (480 loc) · 15.4 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/*
* CodeNarc RuleSet Configuration
* =============================
*
* PRIORITY LEVELS (severity):
* 1 = High (critical issues)
* 2 = Medium (standard issues)
* 3 = Low (minor/style issues)
*
* PRIORITY TO REPORT SEVERITY MAPPING:
* CodeNarc Priority 1 → critical
* CodeNarc Priority 2 → major
* CodeNarc Priority 3 → minor
* (Note: 'info' and 'blocker' severities are not used by CodeNarc rules)
*
* CONFIGURATION SYNTAX:
* RuleName // Use default settings
* RuleName { ... } // Configure with properties
* RuleName(priority:1) // Shorthand for priority only
* // RuleName // Commented out = disabled
*
* COMMON PROPERTIES:
* priority // 1, 2, or 3
* enabled // true/false (default: true)
* applyToFileNames // Pattern for files to check (e.g., '*.groovy')
* doNotApplyToFileNames // Pattern for files to exclude (e.g., '*Test.groovy')
* regex // For naming rules, validation pattern
*
* For full documentation: https://codenarc.org/
*/
ruleset {
description '''
Pricefx CodeNarc RuleSet - maintained by the Competency Leads team.
Contains selected CodeNarc rules with custom configurations for Pricefx projects.
'''
// rulesets/basic.xml
AssertWithinFinallyBlock
// AssignmentInConditional
BigDecimalInstantiation
BitwiseOperatorInConditional
BooleanGetBoolean
BrokenNullCheck
BrokenOddnessCheck
// ClassForName
ComparisonOfTwoConstants
ComparisonWithSelf
// ConstantAssertExpression
ConstantIfExpression
ConstantTernaryExpression
DeadCode
DoubleNegative
DuplicateCaseStatement
DuplicateMapKey
DuplicateSetValue
EmptyCatchBlock
EmptyClass
EmptyElseBlock
EmptyFinallyBlock
EmptyForStatement
EmptyIfStatement
// EmptyInstanceInitializer
EmptyMethod
// EmptyStaticInitializer
EmptySwitchStatement
EmptySynchronizedStatement
EmptyTryBlock
EmptyWhileStatement
// EqualsAndHashCode
// EqualsOverloaded
// ExplicitGarbageCollection
ForLoopShouldBeWhileLoop
// HardCodedWindowsFileSeparator
// HardCodedWindowsRootDirectory
IntegerGetInteger
MultipleUnaryOperators
ParameterAssignmentInFilterClosure
RandomDoubleCoercedToZero
RemoveAllOnSelf
ReturnFromFinallyBlock
ThrowExceptionFromFinallyBlock
// rulesets/braces.xml
ElseBlockBraces
ForStatementBraces
IfStatementBraces
WhileStatementBraces
// rulesets/comments.xml
// ClassJavadoc
JavadocConsecutiveEmptyLines
JavadocEmptyAuthorTag
JavadocEmptyExceptionTag
JavadocEmptyFirstLine
JavadocEmptyLastLine
JavadocEmptyParamTag
JavadocEmptyReturnTag
JavadocEmptySeeTag
JavadocEmptySinceTag
JavadocEmptyThrowsTag
JavadocEmptyVersionTag
JavadocMissingExceptionDescription
JavadocMissingParamDescription
JavadocMissingThrowsDescription
// rulesets/concurrency.xml
// BusyWait
// DoubleCheckedLocking
// InconsistentPropertyLocking
// InconsistentPropertySynchronization
NestedSynchronization
// StaticCalendarField
// StaticConnection
// StaticDateFormatField
// StaticMatcherField
// StaticSimpleDateFormatField
// SynchronizedMethod
// SynchronizedOnBoxedPrimitive
// SynchronizedOnGetClass
// SynchronizedOnReentrantLock
// SynchronizedOnString
// SynchronizedOnThis
// SynchronizedReadObjectMethod
// SystemRunFinalizersOnExit
// ThisReferenceEscapesConstructor
// ThreadGroup
// ThreadLocalNotStaticFinal
// ThreadYield
// UseOfNotifyMethod
// VolatileArrayField
// VolatileLongOrDoubleField
// WaitOutsideOfWhileLoop
// rulesets/convention.xml
// CompileStatic
ConfusingTernary
CouldBeElvis
CouldBeSwitchStatement
// FieldTypeRequired // we can't use class fields - will cause some weird errors
HashtableIsObsolete
// IfStatementCouldBeTernary // See PFAUT-1244
// ImplicitClosureParameter
ImplicitReturnStatement
InvertedCondition
InvertedIfElse(priority:3)
LongLiteralWithLowerCaseL
MethodParameterTypeRequired
MethodReturnTypeRequired {
ignoreMethodNames = "* *" // Skip checking unit test method names. Most of test cases have spaces in names so it should be good enough.
}
// NoDef // On one hand side, it is useful, but on the other, we have a lot of defs where we can't use the PfX type or else tests will fail
NoDouble
NoFloat
// NoJavaUtilDate // We can't use the suggested java.time.* package either way
// NoTabCharacter
ParameterReassignment
// PublicMethodsBeforeNonPublicMethods
// StaticFieldsBeforeInstanceFields
// StaticMethodsBeforeInstanceMethods
TernaryCouldBeElvis
// TrailingComma
// VariableTypeRequired // Same as NoDef
// VectorIsObsolete
// rulesets/design.xml
// AbstractClassWithPublicConstructor
// AbstractClassWithoutAbstractMethod
// AssignmentToStaticFieldFromInstanceMethod
// BooleanMethodReturnsNull // violates: if (api.syntaxCheck) return; return true;
// BuilderMethodWithSideEffects
// CloneableWithoutClone
// CloseWithoutCloseable
// CompareToWithoutComparable
// ConstantsOnlyInterface
// EmptyMethodInAbstractClass
// FinalClassWithProtectedMember
// ImplementationAsType
// Instanceof
// LocaleSetDefault
// NestedForLoop
// OptionalCollectionReturnType
// OptionalField
// OptionalMethodParameter
// PrivateFieldCouldBeFinal
// PublicInstanceField
ReturnsNullInsteadOfEmptyArray
ReturnsNullInsteadOfEmptyCollection
// SimpleDateFormatMissingLocale
// StatelessSingleton
// ToStringReturnsNull
// rulesets/dry.xml
// DuplicateListLiteral // ["sku"] or customer business specific data
// DuplicateMapLiteral // violations in highcharts definitions; calculations of customer business specific data may violate this
// DuplicateNumberLiteral // calculations of customer business specific data may violate this
// DuplicateStringLiteral // working with constants in PFX is cumbersome
// rulesets/enhanced.xml
// CloneWithoutCloneable
// JUnitAssertEqualsConstantActualValue
// MissingOverrideAnnotation
// UnsafeImplementationAsMap
// rulesets/exceptions.xml
CatchArrayIndexOutOfBoundsException
CatchError
// CatchException
// CatchIllegalMonitorStateException
CatchIndexOutOfBoundsException
CatchNullPointerException
CatchRuntimeException
CatchThrowable
// ConfusingClassNamedException
// ExceptionExtendsError
// ExceptionExtendsThrowable
ExceptionNotThrown
MissingNewInThrowStatement
ReturnNullFromCatchBlock
// SwallowThreadDeath
// ThrowError // We can't have our own exception types, so we may need some generic types
//ThrowException // See PFAUT-1244
ThrowNullPointerException
ThrowRuntimeException {
doNotApplyToFileNames = '*Test.groovy'
}
ThrowThrowable
// rulesets/formatting.xml
// BlankLineBeforePackage
BlockEndsWithBlankLine
BlockStartsWithBlankLine(priority:3)
BracesForClass
BracesForForLoop
BracesForIfElse
BracesForMethod
BracesForTryCatchFinally
// ClassEndsWithBlankLine
// ClassStartsWithBlankLine
ClosureStatementOnOpeningLineOfMultipleLineClosure
ConsecutiveBlankLines
FileEndsWithoutNewline
// Indentation
// LineLength
MissingBlankLineAfterImports
MissingBlankLineAfterPackage
MissingBlankLineBeforeAnnotatedField
// SEE PFAUT-1244, DISABLED ALL SpaceAfter rules as IntelliJ can't autoformat them, so we can't enforce them
// SpaceAfterCatch
// SpaceAfterClosingBrace
// SpaceAfterComma
// SpaceAfterFor
// SpaceAfterIf
// SpaceAfterMethodCallName
// SpaceAfterMethodDeclarationName
// SpaceAfterNotOperator
// SpaceAfterOpeningBrace
// SpaceAfterSemicolon
// SpaceAfterSwitch
// SpaceAfterWhile
SpaceAroundClosureArrow
// SpaceAroundMapEntryColon // Conflicts with IntelliJ autoformatting of maps
SpaceAroundOperator
//SpaceBeforeClosingBrace
SpaceBeforeOpeningBrace
SpaceInsideParentheses
TrailingWhitespace
// rulesets/generic.xml
// IllegalClassMember
// IllegalClassReference
// IllegalPackageReference
//IllegalRegex {
// string = "api\\.input\\("
//}
//IllegalString {
// regex = "api\\.getElement\\("
//}
// IllegalSubclass
// RequiredRegex
// RequiredString
// StatelessClass
// rulesets/grails.xml
// GrailsDomainGormMethods
// GrailsDomainHasEquals
// GrailsDomainHasToString
// GrailsDomainReservedSqlKeywordName
// GrailsDomainStringPropertyMaxSize
// GrailsDomainWithServiceReference
// GrailsDuplicateConstraint
// GrailsDuplicateMapping
// GrailsMassAssignment
// GrailsPublicControllerMethod
// GrailsServletContextReference
// GrailsStatelessService
// rulesets/groovyism.xml
AssignCollectionSort
AssignCollectionUnique
//ClosureAsLastMethodParameter // See PFAUT-1244
CollectAllIsDeprecated
ConfusingMultipleReturns
ExplicitArrayListInstantiation
// ExplicitCallToAndMethod // It catches also Filter calls
ExplicitCallToCompareToMethod
ExplicitCallToDivMethod
ExplicitCallToEqualsMethod // It catches also Filter calls -- really ???
// ExplicitCallToGetAtMethod // We use a lot of it, because it is the safest for null-checking and works on both, lists and maps.
ExplicitCallToLeftShiftMethod
ExplicitCallToMinusMethod
ExplicitCallToModMethod
ExplicitCallToMultiplyMethod
// ExplicitCallToOrMethod // It catches also Filter calls
ExplicitCallToPlusMethod
ExplicitCallToPowerMethod
ExplicitCallToPutAtMethod
ExplicitCallToRightShiftMethod
ExplicitCallToXorMethod
ExplicitHashMapInstantiation
ExplicitHashSetInstantiation
ExplicitLinkedHashMapInstantiation
ExplicitLinkedListInstantiation
ExplicitStackInstantiation
ExplicitTreeSetInstantiation
GStringAsMapKey
GStringExpressionWithinString
// GetterMethodCouldBeProperty // We don't use properties, so it returns weird results
// GroovyLangImmutable
UseCollectMany
UseCollectNested
// rulesets/imports.xml
DuplicateImport
// ImportFromSamePackage
ImportFromSunPackages
// MisorderedStaticImports // Conflicts with IntelliJ import formatting default settings
NoWildcardImports
UnnecessaryGroovyImport
UnusedImport
// rulesets/jdbc.xml
// DirectConnectionManagement
// JdbcConnectionReference
// JdbcResultSetReference
// JdbcStatementReference
// rulesets/junit.xml
ChainedTest
// CoupledTestCase
// We use Spock
// JUnitAssertAlwaysFails
// JUnitAssertAlwaysSucceeds
// JUnitFailWithoutMessage
// JUnitLostTest
// JUnitPublicField
// JUnitPublicNonTestMethod
// JUnitPublicProperty
// JUnitSetUpCallsSuper
// JUnitStyleAssertions
// JUnitTearDownCallsSuper
// JUnitTestMethodWithoutAssert
// JUnitUnnecessarySetUp
// JUnitUnnecessaryTearDown
// JUnitUnnecessaryThrowsException
SpockIgnoreRestUsed
// UnnecessaryFail
// UseAssertEqualsInsteadOfAssertTrue
// UseAssertFalseInsteadOfNegation
// UseAssertNullInsteadOfAssertEquals
// UseAssertSameInsteadOfAssertTrue
// UseAssertTrueInsteadOfAssertEquals
// UseAssertTrueInsteadOfNegation
// rulesets/logging.xml
// LoggerForDifferentClass
// LoggerWithWrongModifiers
// LoggingSwallowsStacktrace
// MultipleLoggers
PrintStackTrace
Println
SystemErrPrint
// SystemOutPrint
// rulesets/naming.xml
// AbstractClassName
// ClassName
// ClassNameSameAsFilename
// ClassNameSameAsSuperclass
ConfusingMethodName
// FactoryMethodName
// FieldName { // violates def RoundingUtils = libs.SharedLib.RoundingUtils
// regex = "([a-z_][a-zA-Z0-9]*)|([A-Z][A-Z0-9_]*)"
// }
// InterfaceName
// InterfaceNameSameAsSuperInterface
MethodName {
regex = "[a-z_]\\w*"
doNotApplyToFileNames = '*Test.groovy'
}
// ObjectOverrideMisspelledMethodName
// PackageName
// PackageNameMatchesFilePath
ParameterName {
regex = "[a-z_][a-zA-Z0-9]*"
}
// PropertyName
// VariableName {
// regex = "([a-z_][a-zA-Z0-9]*)|([A-Z][A-Z0-9_]*)"
// }
// rulesets/security.xml
// Not sure we can do any of it
// FileCreateTempFile
// InsecureRandom
// JavaIoPackageAccess
// NonFinalPublicField
// NonFinalSubclassOfSensitiveInterface
// ObjectFinalize
// PublicFinalizeMethod
// SystemExit
// UnsafeArrayDeclaration
// rulesets/serialization.xml
// EnumCustomSerializationIgnored
// SerialPersistentFields
// SerialVersionUID
// SerializableClassMustDefineSerialVersionUID
// rulesets/size.xml
// MethodName {
// doNotApplyToFileNames = '*Test.groovy'
// }
ClassSize
// CrapMetric // Requires the GMetrics jar and a Cobertura coverage file - we don't have coverage
CyclomaticComplexity { // Requires the GMetrics jar
maxMethodComplexity = 50
}
MethodCount {
maxMethods = 60 // See PFAUT-1244
}
MethodSize
NestedBlockDepth
// ParameterCount
// rulesets/unnecessary.xml
AddEmptyString
ConsecutiveLiteralAppends
ConsecutiveStringConcatenation
UnnecessaryBigDecimalInstantiation
UnnecessaryBigIntegerInstantiation
UnnecessaryBooleanExpression {
doNotApplyToFileNames = '*Test.groovy'
}
UnnecessaryBooleanInstantiation
UnnecessaryCallForLastElement
UnnecessaryCallToSubstring
UnnecessaryCast
UnnecessaryCatchBlock
// UnnecessaryCollectCall
UnnecessaryCollectionCall
// UnnecessaryConstructor
// UnnecessaryDefInFieldDeclaration
// UnnecessaryDefInMethodDeclaration
// UnnecessaryDefInVariableDeclaration
UnnecessaryDotClass
UnnecessaryDoubleInstantiation
UnnecessaryElseStatement
// UnnecessaryFinalOnPrivateMethod
UnnecessaryFloatInstantiation
// UnnecessaryGString // It may be too nitpicky. It doesn't make so much difference to differentiate String from GString usually
// UnnecessaryGetter // Seems faulty. Will also catch keys in maps when values are closures
UnnecessaryIfStatement
UnnecessaryInstanceOfCheck
UnnecessaryInstantiationToGetClass
UnnecessaryIntegerInstantiation
UnnecessaryLongInstantiation
UnnecessaryModOne
UnnecessaryNullCheck
UnnecessaryNullCheckBeforeInstanceOf
// UnnecessaryObjectReferences
// UnnecessaryOverridingMethod
UnnecessaryPackageReference
UnnecessaryParenthesesForMethodCallWithClosure
UnnecessaryPublicModifier
// UnnecessaryReturnKeyword
UnnecessarySafeNavigationOperator
UnnecessarySelfAssignment
UnnecessarySemicolon
// UnnecessarySetter // Seems faulty. Will also catch keys in maps when values are closures
UnnecessaryStringInstantiation
UnnecessaryTernaryExpression(priority:3)
UnnecessaryToString(priority:3)
// UnnecessaryTransientModifier
// rulesets/unused.xml
UnusedArray
UnusedMethodParameter
UnusedObject
UnusedPrivateField
UnusedPrivateMethod
UnusedPrivateMethodParameter
UnusedVariable
}