forked from pawelwiejkut/bw_toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabaplint.json
More file actions
92 lines (92 loc) · 1.63 KB
/
abaplint.json
File metadata and controls
92 lines (92 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"global": {
"version": "v751",
"skipGeneratedGatewayClasses": true
},
"rules": {
"7bit_ascii": {
"enabled": true
},
"contains_tab": {
"enabled": true
},
"functional_writing": {
"enabled": true,
"ignoreExceptions": true
},
"line_length": {
"enabled": true,
"length": 130
},
"max_one_statement": {
"enabled": true
},
"parser_error": {
"enabled": true
},
"space_before_colon": {
"enabled": true
},
"colon_missing_space": {
"enabled": true
},
"exit_or_check": {
"enabled": true
},
"line_only_punc": {
"enabled": true,
"ignoreExceptions": true
},
"obsolete_statement": {
"enabled": true,
"refresh": true,
"compute": true,
"add": true,
"subtract": true,
"multiply": true,
"move": true,
"divide": true,
"requested": true
},
"start_at_tab": {
"enabled": true
},
"whitespace_end": {
"enabled": true
},
"exporting": {
"enabled": true
},
"empty_statement": {
"enabled": true
},
"sequential_blank": {
"enabled": true,
"lines": 4
},
"definitions_top": {
"enabled": true
},
"breakpoint": {
"enabled": true
},
"nesting": {
"enabled": true,
"depth": 5
},
"keywords_upper": {
"enabled": true,
"ignoreExceptions": true
},
"cloud_types": {
"enabled": true
},
"method_length": {
"enabled": true,
"statements": 100
},
"mix_returning": {
"enabled": true
}
}
}