forked from JohnCoatesOSS/Limitless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.oclint
46 lines (40 loc) · 986 Bytes
/
.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
# 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
# - ObjectSubscripting
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