-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabaplint.json
More file actions
85 lines (85 loc) · 2.32 KB
/
abaplint.json
File metadata and controls
85 lines (85 loc) · 2.32 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
{
"global": {
"files": "/src/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v757",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)"
},
"rules": {
"method_implemented_twice": true,
"method_length": {
"exclude": [],
"severity": "Error",
"statements": 100,
"errorWhenEmpty": false,
"ignoreTestClasses": false,
"checkForms": true
},
"definitions_top" : {
"exclude": [],
"severity": "Error"
},
"use_line_exists": true,
"use_new": true,
"when_others_last": true,
"whitespace_end": false,
"xml_consistency": true,
"use_bool_expression": true,
"use_class_based_exceptions": {
"exclude": []
},
"unnecessary_return": true,
"unreachable_code": true,
"unused_ddic": {
"exclude": ["zasisdr_rusthd.tabl.xml", "zasisdr_rustit.tabl.xml"],
},
"unused_methods": {
"exclude": ["zasis_cl_interpreter.clas.testclasses.abap"],
},
"unused_types": {
"exclude": []
},
"unused_variables": {
"exclude": ["zasis_cl_interpreter.clas.abap"]
},
"tabl_enhancement_category": true,
"try_without_catch": true,
"type_form_parameters": true,
"types_naming": {
"exclude": [
"/json/"
],
"pattern": "^TY_.+$"
},
"sicf_consistency": true,
"sy_modification": true,
"tabl_enhancement_category": true,
"superclass_final": true,
"superfluous_value": true,
"static_call_via_instance": true,
"sql_escape_host_variables": true,
"slow_parameter_passing": true,
"smim_consistency": true,
"space_before_colon": true,
"space_before_dot": {
"ignoreExceptions": true,
"ignoreGlobalDefinition": true,
"exclude": ["zasis_conf_maint.fugr.lzasis_conf_maintf00.abap",
"zasis_conf_maint.fugr.saplzasis_conf_maint.abap",
"zasis_conf_maint.fugr.lzasis_conf_mainttop.abap",
"zasis_conf_maint.fugr.tableframe_zasis_conf_maint.abap",
"zasis_conf_maint.fugr.tableproc_zasis_conf_maint.abap",
"zasis_conf_maint.fugr.lzasis_conf_mainti00.abap",
"zasis_conf_maint.fugr.lzasis_conf_maintt00.abap"
]
},
}
}