Add npm run lint-no-fix option (#93)

This commit is contained in:
TrueDoctor
2021-05-02 21:27:44 +02:00
committed by Keavon Chambers
parent fc10575dfa
commit f10a3c63d1
2 changed files with 5 additions and 3 deletions

View File

@@ -6,6 +6,7 @@
"scripts": {
"serve": "cd client && cd web && npm run serve",
"build": "cd client && cd web && npm run build",
"lint": "cd client && cd web && npm run lint"
"lint": "cd client && cd web && npm run lint",
"lint-no-fix": "cd client && cd web && npm run lint-no-fix"
}
}
}