-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathabaplint.jsonc
More file actions
36 lines (36 loc) · 817 Bytes
/
abaplint.jsonc
File metadata and controls
36 lines (36 loc) · 817 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
31
32
33
34
35
36
{
"global": {
"files": "/src/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps1",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/abapGit/abapGit",
"folder": "/deps2",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v702",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)",
"globalConstants": ["rs_c_pgmid_r3tr", "rs_c_true"]
},
"rules": {
"begin_end_names": true,
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"global_class": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"parser_missing_space": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}