-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabaplint.jsonc
More file actions
55 lines (55 loc) · 1.28 KB
/
abaplint.jsonc
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"global": {
"files": "/src/**/*.*",
"skipGeneratedFunctionGroups": true
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v758",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)"
},
"rules": {
"begin_end_names": true,
"cds_parser_error": true,
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"identical_form_names": true,
"global_class": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true,
"modify_only_own_db_tables": {
"exclude": [],
"severity": "Error",
"reportDynamic": true,
"ownTables": "^[yz]"
},
"dangerous_statement": {
"exclude": [],
"severity": "Error",
"execSQL": true,
"kernelCall": true,
"systemCall": true,
"insertReport": true,
"generateDynpro": true,
"generateReport": true,
"generateSubroutine": true,
"deleteReport": true,
"deleteTextpool": true,
"insertTextpool": true,
"deleteDynpro": true,
"exportDynpro": true,
"dynamicSQL": true
}
}
}