-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
abaplint.json
46 lines (46 loc) · 972 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
41
42
43
44
45
46
{
"global": {
"files": "/src/**/*.*"
},
"syntax": {
"version": "v755",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)"
},
"dependencies": [
{
"files": "/src/**",
"folder": "/deps"
}
],
"rules": {
"begin_end_names": true,
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"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)\\_SAT\\_",
"intf": "^ZIF\\_SAT\\_",
"prog": "^ZSAT",
"fugr": "^ZSAT",
"tabl": "^ZSAT",
"ttyp": "^ZSAT",
"dtel": "^ZSAT",
"doma": "^ZSAT",
"msag": "^ZSAT",
"tran": "^ZSAT",
"enqu": "^EZSAT",
"auth": "^ZSAT",
"shlp": "^ZSAT",
"xslt": "^ZSAT",
"enho": "^ZSAT"
}
}
}