-
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) · 2.93 KB
/
Copy pathabaplint.json
File metadata and controls
92 lines (92 loc) · 2.93 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": {
"files": "/**/*.*",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true
},
"syntax": {
"version": "v740sp02",
"errorNamespace": "",
"globalConstants": [],
"globalMacros": []
},
"dependencies": [
{
"url": "https://github.com/abaplint/deps",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"rules": {
"avoid_use": false,
"commented_code": false,
"constructor_visibility_public": false,
"description_empty": false,
"empty_statement": false,
"empty_structure": false,
"exporting": false,
"functional_writing": false,
"global_class": false,
"identical_form_names": false,
"if_in_if": false,
"inline_data_old_versions": false,
"line_length": false,
"max_one_statement": false,
"message_exists": false,
"method_length": false,
"mix_returning": false,
"msag_consistency": false,
"nesting": false,
"obsolete_statement": false,
"parser_error": false,
"preferred_compare_operator": false,
"short_case": false,
"superclass_final": false,
"unreachable_code": false,
"use_new": false,
"when_others_last": false,
"ambiguous_statement": false,
"begin_end_names": false,
"check_transformation_exists": false,
"check_syntax": true,
"form_tables_obsolete": false,
"tabl_enhancement_category": false,
"implement_methods": false,
"main_file_contents": false,
"rfc_error_handling": false,
"indentation": false,
"sequential_blank": false,
"empty_line_in_statement": false,
"check_abstract": false,
"no_public_attributes": false,
"abapdoc": false,
"prefer_returning_to_exporting": false,
"keep_single_parameter_on_one_line": false,
"allowed_object_naming": false,
"fully_type_constants": false,
"check_comments": false,
"check_text_elements": false,
"newline_between_methods": false,
"check_include": false,
"xml_consistency": false,
"prefix_is_current_class": false,
"line_break_multiple_parameters": false,
"prefer_inline": false,
"reduce_string_templates": false,
"sicf_consistency": false,
"sql_escape_host_variables": false,
"try_without_catch": false,
"names_no_dash": false,
"unknown_types": false,
"unused_variables": false,
"unused_types": false,
"use_bool_expression": false,
"use_line_exists": false,
"check_subrc": false,
"cyclomatic_complexity": false,
"parser_missing_space": false,
"identical_conditions": false,
"prefer_is_not": false
}
}