restore old lint command (fixes #170)

This commit is contained in:
Steffen 2021-05-10 20:04:05 +02:00
parent b73de453a5
commit 184a77a039
No known key found for this signature in database
GPG Key ID: 764D74E98267DFC6
2 changed files with 3 additions and 2 deletions

View File

@ -16,5 +16,5 @@ jobs:
with: with:
node-version: '14' node-version: '14'
- run: npm install - run: npm install
- run: npm run lint - run: npm run lint-ci

View File

@ -6,7 +6,8 @@
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
"build": "vue-cli-service build ./src/main.js", "build": "vue-cli-service build ./src/main.js",
"lint": "vue-cli-service lint --no-fix --max-warnings=0" "lint": "vue-cli-service lint",
"lint-ci": "vue-cli-service lint --no-fix --max-warnings=0"
}, },
"main": "App.vue", "main": "App.vue",
"dependencies": { "dependencies": {