-
Notifications
You must be signed in to change notification settings - Fork 0
/
abaplint.jsonc
43 lines (43 loc) · 940 Bytes
/
abaplint.jsonc
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
{
"global": {
"files": "/src/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/open-abap/open-abap-core",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v755",
"errorNamespace": "."
},
"rules": {
"begin_end_names": true,
"line_length": {
"length": 255
},
"unnecessary_return": true,
"omit_parameter_name": true,
"if_in_if": true,
"sequential_blank": {
"lines": 3
},
"keyword_case": true,
"in_statement_indentation": true,
"check_ddic": true,
"definitions_top": true,
"prefix_is_current_class": true,
"whitespace_end": true,
"indentation": true,
"check_include": true,
"check_syntax": true,
"global_class": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}