-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabaplint.jsonc
More file actions
45 lines (45 loc) · 1.07 KB
/
abaplint.jsonc
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"global": {
"files": "/src/**/*.*",
"exclude": [
"/src/zmjs_test262.prog.abap"
]
},
"dependencies": [
{
"url": "https://github.com/open-abap/open-abap-core",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "open-abap",
"errorNamespace": "."
},
"rules": {
"begin_end_names": true,
"cds_parser_error": true,
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"check_transformation_exists": true,
"keyword_case": true,
"dynpro_checks": true,
"global_class": true,
"identical_form_names": true,
"implement_methods": true,
"max_one_statement": true,
"indentation": true,
"local_testclass_consistency": true,
"message_exists": true,
"method_implemented_twice": true,
"mix_returning": true,
"no_comments_between_methods": true,
"parser_bad_exceptions": true,
"parser_error": true,
"parser_missing_space": true,
"sql_escape_host_variables": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}