-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathabaplint.jsonc
84 lines (84 loc) · 2.15 KB
/
abaplint.jsonc
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
{
"global": {
"files": "/src/**/*.*" ,
"exclude": [
"zcl_au_4i_monster_so_header",
"zcl_d_4i_monster_so_header_act",
"zcl_4_v_monsterheader_con_chk",
"zcl_4_village_monster_query",
"zcl_4_a_howl_at_the_moon",
"zcl_4_d_monsterheader_texts",
"zcl_4_a_explode_all_heads",
"zcl_4_a_v_check_howling_status",
"zcl_4_fpm_monstersearch_feeder",
"zcl_au_4cds_monster_deliveries",
"zcl_d_4i_monster_so_items_acti",
"zcl_d_4cds_monster_deliveries0"
],
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps1",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/abap2xlsx/abap2xlsx",
"folder": "/deps2",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/AntonSikidin/zcl_docx",
"folder": "/deps3",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/sbcgua/mockup_loader",
"folder": "/deps4",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/hardyp/DesignByContract",
"folder": "/deps5",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/hardyp/FunctionModuleWrapper",
"folder": "/deps6",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/hardyp/OCPFactory",
"folder": "/deps7",
"files": "/src/**/*.*"
},
{
"url": "https://github.com/ABAP-Logger/ABAP-Logger",
"folder": "/deps8",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "v755",
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)",
"globalConstants": ["scua_c_eudb_sprsl"],
"globalMacros": []
},
"rules": {
"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,
"parser_missing_space": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}