mirror of https://github.com/bra1n/townsquare.git
restore old lint command (fixes #170)
This commit is contained in:
parent
b73de453a5
commit
184a77a039
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Loading…
Reference in New Issue