-
Notifications
You must be signed in to change notification settings - Fork 11
/
abaplint_downport.json
43 lines (43 loc) · 1.08 KB
/
abaplint_downport.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
{
"global": {
"files": "/downport/**/*.*",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true,
"useApackDependencies": false,
"exclude": [
".*/zcl_turtle_output.clas.abap",
".*/turtle_demo_polygons.prog.abap",
".*/zcl_turtle_apack_manifest.clas.abap"
]
},
"dependencies": [
{
"url": "https://github.com/open-abap/open-abap",
"folder": "/deps",
"files": "/**/*.*"
}
],
"syntax": {
"version": "v702",
"errorNamespace": ""
},
"rules": {
"downport": true,
"check_syntax": true,
"keyword_case": {
"style": "lower",
"ignoreExceptions": false,
"ignoreFunctionModuleName": false,
"ignoreGlobalClassDefinition": false,
"ignoreGlobalInterface": false,
"ignoreLowerClassImplmentationStatement": false,
"ignoreGlobalClassBoundaries": false,
"ignoreKeywords": []
},
"indentation": true,
"line_break_multiple_parameters": true,
"parser_error": true,
"definitions_top": true
}
}