-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabaplint.json
40 lines (40 loc) · 917 Bytes
/
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
{
"global": {
"files": "/src/**/*.*",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v740sp08",
"errorNamespace": "^(Z|Y)",
"globalConstants": [],
"globalMacros": []
},
"rules": {
"line_length": false,
"contains_tab": false,
"functional_writing": false,
"max_one_statement": true,
"parser_error": false,
"space_before_colon": true,
"colon_missing_space": true,
"exit_or_check": false,
"obsolete_statement": false,
"start_at_tab": false,
"whitespace_end": true,
"exporting": true,
"empty_statement": true,
"sequential_blank": {
"lines":4
},
"definitions_top": false
}
}