-
Notifications
You must be signed in to change notification settings - Fork 28
/
.oclint
72 lines (65 loc) · 1.53 KB
/
.oclint
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
# http://oclint-docs.readthedocs.io/en/stable/howto/rcfile.html
# http://oclint-docs.readthedocs.io/en/stable/howto/thresholds.html
# http://oclint-docs.readthedocs.io/en/stable/rules/index.html
report-type: xcode
max-priority-1: 9999
max-priority-2: 9999
max-priority-3: 9999
disable-rules:
- GotoStatement
- LongLine
- ShortVariableName
- BitwiseOperatorInConditional
- UselessParentheses
- SwitchStatementsShouldHaveDefault
- DeepNestedBlock
- InvertedLogic
- CollapsibleIfStatements
- MissingBreakInSwitchStatement
- HighNPathComplexity
- HighCyclomaticComplexity
- UnnecessaryElseStatement
- HighNcssMethod
- UseEarlyExitsAndContinue
- EmptyIfStatement
- ParameterReassignment
- ObjCBoxedExpressions
- UseBoxedExpression
- AssignIvarOutsideAccessors
- InvertedLogic
- UseContainerLiteral
- UseObjectSubscripting
- PreferEarlyExit
- UnusedLocalVariable
- UnusedMethodParameter
- MethodDeclarationSpacing
- ConstantIfExpression
- RedundantLocalVariable
- TooManyMethods
- EmptyDoWhileStatement
- LongVariableName
- UseNumberLiteral
- AvoidBranchingStatementAsLastInLoop
- MissingDefaultStatement
- DeadCode
- MisplacedDefaultLabel
- ConstantConditionalOperator
- RedundantNilCheck
- TooManyParameters
- TooFewBranchesInSwitchStatement
- EmptyWhileStatement
rule-configurations:
- key: CYCLOMATIC_COMPLEXITY
value: 15
- key: LONG_CLASS
value: 20000
- key: LONG_LINE
value: 120
- key: LONG_METHOD
value: 3000
- key: LONG_VARIABLE_NAME
value: 30
- key: MAXIMUM_IF_LENGTH
value: 20
- key: TOO_MANY_PARAMETERS
value: 5