-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabaplint.json
40 lines (40 loc) · 965 Bytes
/
abaplint.json
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
{
"global": {
"files": "/src/**/*.*"
},
"syntax": {
"version": "v740sp08",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)"
},
"rules": {
"begin_end_names": true,
"check_ddic": true,
"check_include": true,
"check_syntax": false,
"global_class": true,
"strict_sql": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true,
"object_naming": {
"clas": "^ZC(L|X)\\_ABAPTAGS\\_",
"intf": "^ZIF\\_ABAPTAGS\\_",
"prog": "^ZABAPTAGS",
"fugr": "^ZABAPTAGS",
"tabl": "^ZABAPTAGS",
"ttyp": "^ZABAPTAGS",
"dtel": "^ZABAPTAGS",
"doma": "^ZABAPTAGS",
"msag": "^ZABAPTAGS",
"tran": "^ZABAPTAGS",
"enqu": "^EZABAPTAGS",
"auth": "^ZABAPTAGS",
"shlp": "^ZABAPTAGS",
"xslt": "^ZABAPTAGS",
"enho": "^ZABAPTAGS"
}
}
}