update to abaplint 2.0.0 (#2898)

* Update abaplint.json

* Update package.json

* Update package.json
This commit is contained in:
Lars Hvam 2019-08-30 04:05:09 -07:00 committed by GitHub
parent e5e63e089b
commit 573cfb7e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"global": {
"version": "v702",
"files": "/src/**/*.*",
"skipGeneratedGatewayClasses": true,
"skipGeneratedPersistentClasses": true,
"skipGeneratedFunctionGroups": true,
@ -14,6 +14,7 @@
}
],
"syntax": {
"version": "v702",
"errorNamespace": "^(Z|Y)",
"globalConstants": [
"abap_func_exporting",

View File

@ -1,11 +1,11 @@
{
"license": "MIT",
"scripts": {
"pretest": "abaplint --version && abaplint \"src/**/*.*\"",
"pretest": "abaplint --version && abaplint",
"test": "npm run eslint",
"posttest": "abapmerge src/zabapgit.prog.abap > zabapgit.abap",
"_disabled_posttest": "abaplint zabapgit.abap",
"lint": "abaplint \"src/**/*.*\"",
"lint": "abaplint",
"eslint": "eslint src"
},
"repository": {
@ -13,7 +13,7 @@
"url": "git+https://github.com/larshp/abapGit.git"
},
"devDependencies": {
"abaplint": "^1.7.23",
"abaplint": "^2.0.0",
"abapmerge": "^0.11.5",
"eslint": "^5.11.1"
}