This commit is contained in:
Lars Hvam 2025-04-22 11:31:06 +00:00 committed by GitHub
commit c676bd205c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 19 additions and 7 deletions

View File

@ -28,7 +28,12 @@
"test/"
],
"output_folder": "output",
"lib": "https://github.com/open-abap/open-abap",
"libs": [
{
"url": "https://github.com/open-abap/open-abap-core",
"files": "/src/**/*.*"
}
],
"write_unit_tests": true,
"write_source_map": true,
"options": {

View File

@ -95,6 +95,8 @@
"define": true,
"describeLines": false,
"testSeams": true,
"exportToMemory": true,
"exportToDatabase": false,
"statics": false,
"defaultKey": false,
"break": true
@ -136,9 +138,7 @@
"local_class_naming": false,
"main_file_contents": true,
"message_exists": false,
"msag_consistency": {
"numericParamters": false
},
"msag_consistency": false,
"newline_between_methods": false,
"no_public_attributes": false,
"object_naming": {
@ -181,6 +181,12 @@
"line_only_punc": false,
"obsolete_statement": {
"refresh": true,
"compute": true,
"communication": true,
"exitFromSQL": true,
"formDefinition": true,
"formImplementation": true,
"freeMemory": true,
"move": true
},
"start_at_tab": false,

View File

@ -2,6 +2,7 @@
"license": "MIT",
"private": true,
"scripts": {
"lint": "abaplint",
"test": "rm -rf output && abap_transpile abap_transpile.json && echo RUNNING && node output/index.mjs"
},
"repository": {
@ -9,8 +10,8 @@
"url": "git+https://github.com/abap2xlsx/abap2xlsx.git"
},
"devDependencies": {
"@abaplint/cli": "^2.112.10",
"@abaplint/transpiler-cli": "^2.10.9",
"@abaplint/runtime": "^2.10.9"
"@abaplint/cli": "^2.113.110",
"@abaplint/transpiler-cli": "^2.10.44",
"@abaplint/runtime": "^2.10.44"
}
}