Skip to content

Commit

Permalink
update to latest abaplint config
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed May 14, 2019
1 parent a413823 commit 76c91e0
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions abaplint.json
Expand Up @@ -3,7 +3,8 @@
"version": "v702",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true
"skipGeneratedFunctionGroups": true,
"applyUnspecifiedRules": false
},
"rules": {
"7bit_ascii": {
Expand Down Expand Up @@ -119,7 +120,8 @@
"ignoreExceptions": true,
"ignoreLowerClassImplmentationStatement": true,
"ignoreGlobalClassDefinition": false,
"ignoreGlobalInterface": false
"ignoreGlobalInterface": false,
"ignoreFunctionModuleName": false
},
"line_length": {
"enabled": true,
Expand Down Expand Up @@ -219,6 +221,19 @@
"enabled": true,
"exclude": []
},
"preferred_compare_operator": {
"enabled": false,
"exclude": [],
"badOperators": [
"EQ",
"><",
"NE",
"GE",
"GT",
"LT",
"LE"
]
},
"remove_descriptions": {
"enabled": true,
"exclude": [],
Expand Down Expand Up @@ -251,6 +266,10 @@
"enabled": true,
"exclude": []
},
"unreachable_code": {
"enabled": true,
"exclude": []
},
"when_others_last": {
"enabled": true,
"exclude": []
Expand Down

0 comments on commit 76c91e0

Please sign in to comment.