-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathabaplint.json
More file actions
30 lines (30 loc) · 636 Bytes
/
Copy pathabaplint.json
File metadata and controls
30 lines (30 loc) · 636 Bytes
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
{
"global": {
"files": "/CODE/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v754",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)"
},
"rules": {
"begin_end_names": true,
"cds_parser_error": true,
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"global_class": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}