forked from ABAP-Logger/ABAP-Logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abaplint.json
57 lines (57 loc) · 1.4 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
{
"global": {
"files": "/src/**/*.*",
"exclude": [],
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v702",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)",
"globalConstants": [],
"globalMacros": []
},
"rules": {
"begin_end_names": true,
"check_comments": {
"allowEndOfLine": true
},
"check_ddic": true,
"check_include": true,
"check_syntax": true,
"functional_writing": {
"ignoreExceptions": true
},
"exporting": true,
"global_class": true,
"implement_methods": true,
"indentation": {
"alignTryCatch": false,
"ignoreExceptions": false,
"globalClassSkipFirst": false,
"ignoreGlobalClassDefinition": false,
"ignoreGlobalInterface": false,
"selectionScreenBlockIndentation": false
},
"in_statement_indentation": true,
"keyword_case": true,
"omit_receiving": true,
"method_implemented_twice": true,
"parser_error": true,
"parser_missing_space": true,
"pragma_style": true,
"superclass_final": true,
"unknown_types": true,
"unused_variables": true,
"whitespace_end": true,
"xml_consistency": true
}
}