-
Notifications
You must be signed in to change notification settings - Fork 1
/
abaplint_rename.json
70 lines (70 loc) · 1.68 KB
/
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
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
{
"global": {
"files": "/input/src/**/*.*",
"exclude": [],
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true,
"useApackDependencies": false
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"rename": {
"output": "output",
"patterns": [
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER$",
"newName": "/MBTOOLS/$1_LOGGER"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_COLLECTION",
"newName": "/MBTOOLS/$1_LOGGER_COLLECTION"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_DISPLAY_PROFILE",
"newName": "/MBTOOLS/$1_LOGGER_DISP_PROF"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_FACTORY",
"newName": "/MBTOOLS/$1_LOGGER_FACTORY"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_INJECTOR",
"newName": "/MBTOOLS/$1_LOGGER_INJECTOR"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_MANIFEST",
"newName": "/MBTOOLS/$1_LOGGER_MANIFEST"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGER_SETTINGS",
"newName": "/MBTOOLS/$1_LOGGER_SETTINGS"
},
{
"type": "CLAS|INTF",
"oldName": "Z(.*)_LOGGABLE_OBJECT",
"newName": "/MBTOOLS/$1_LOGGABLE_OBJECT"
}
]
},
"syntax": {
"version": "v702",
"errorNamespace": "^(/MBTOOLS/|LCL_|TY_|LIF_)",
"globalConstants": [],
"globalMacros": []
},
"rules": {
}
}