-
Notifications
You must be signed in to change notification settings - Fork 0
/
abaplint_rename.json
42 lines (42 loc) · 977 Bytes
/
abaplint_rename.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
{
"global": {
"files": "/input/**/src/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abapedia/steampunk-2305-api-intersect-702",
"files": "/src/**/*.*"
}
],
"rename": {
"output": "output",
"patterns": [
{
"type": "CLAS|INTF|TABL",
"oldName": "z2ui5_(.*)",
"newName": "z$1"
}
]
},
"syntax": {
"version": "v750",
"errorNamespace": "."
},
"rules": {
"allowed_object_types": {
"allowed": ["CLAS", "DEVC", "INTF", "TABL"]
},
"allowed_object_naming": true,
"begin_end_names": true,
"check_ddic": 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
}
}