refactor: remove angular lint command

This commit is contained in:
Wieland Schöbl
2021-07-14 10:21:12 +02:00
parent c1c9a92ec9
commit ccb851c0b5
2 changed files with 1 additions and 10 deletions

View File

@@ -193,15 +193,6 @@
"ignorePath": ".eslintignore"
}
},
"lint:fix": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"],
"fix": true,
"eslintConfig": ".eslintrc.json",
"ignorePath": ".eslintignore"
}
},
"ionic-cordova-build": {
"builder": "@ionic/angular-toolkit:cordova-build",
"options": {

View File

@@ -26,7 +26,7 @@
"docker:serve": "sudo docker run -p 8100:8100 -p 35729:35729 -p 53703:53703 -v $PWD:/app -it registry.gitlab.com/openstapps/app bash -c \"npm start\"",
"documentation": "compodoc -p tsconfig.json -d docs",
"lint": "ng lint",
"lint-fix": "eslint --fix -c .eslintrc.json --ignore-path .eslintignore --ext .ts,.html src/",
"lint:fix": "eslint --fix -c .eslintrc.json --ignore-path .eslintignore --ext .ts,.html src/",
"ng": "ng",
"postversion": "npm run changelog",
"pree2e": "webdriver-manager clean && webdriver-manager update --gecko false --versions.chrome $(google-chrome --product-version)",