-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.oclint
36 lines (35 loc) · 1010 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
#################################################################
# #
# Copyright (c) 2019 YottaDB LLC and/or its subsidiaries. #
# All rights reserved. #
# #
# This source code contains the intellectual property #
# of its copyright holder(s), and is made available #
# under a license. If you do not know the terms of #
# the license, please stop and do not read further. #
# #
#################################################################
rule-configurations:
- key: LONG_LINE
value: 132
- key: SHORT_VARIABLE_NAME
value: 1
- key: NCSS_METHOD
value: 250
- key: LONG_METHOD
value: 150
- key: NESTED_BLOCK_DEPTH
value: 6
disable-rules:
- EmptyIfStatement
- BitwiseOperatorInConditional
- LongMethod
- LongVariableName
- EmptyForStatement
- UnnecessaryDefaultStatement
- TooFewBranchesInSwitchStatement
- HighCyclomaticComplexity
- HighNPathComplexity
- InvertedLogic
output: build/report.txt
enable-clang-static-analyzer: true