Create abaplint-app.json (#850)

* Create abaplint-app.json

* Delete src/abaplint-app.json

* Update abaplint-app.json

* Create abaplint-steampunk.jsonc

* Update abaplint-steampunk.jsonc

* Update abaplint-steampunk.jsonc
This commit is contained in:
oblomov 2024-02-03 10:36:52 +01:00 committed by GitHub
parent 5343f1b4d4
commit 978c0ff4d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 35 additions and 2 deletions

View File

@ -1,10 +1,10 @@
{
"configurations": {
"default": {
"filename": "./abaplint.json"
"filename": "./abaplint.jsonc"
},
"steampunk": {
"filename": "./abaplint-steampunk.json",
"filename": "./abaplint-steampunk.jsonc",
"annotations": false
}
}

33
abaplint-steampunk.jsonc Normal file
View File

@ -0,0 +1,33 @@
{
"global": {
"files": "/src/**/*.*"
},
"dependencies": [
{
"url": "https://github.com/abapedia/steampunk-2302-api",
"folder": "/deps",
"files": "/src/**/*.*"
}
],
"syntax": {
"version": "Cloud",
"errorNamespace": "."
},
"rules": {
"begin_end_names": true,
"cds_parser_error": true,
"check_ddic": true,
"strict_sql": true,
"sql_escape_host_variables": true,
"check_include": true,
"check_syntax": true,
"cloud_types": true,
"global_class": true,
"implement_methods": true,
"method_implemented_twice": true,
"parser_error": true,
"superclass_final": true,
"unknown_types": true,
"xml_consistency": true
}
}