Changed lint option to make it easier to see

translate
Jun Koyama 2020-10-06 01:07:38 +09:00
parent 5d42a34092
commit b5fc328804
No known key found for this signature in database
GPG Key ID: 7E7F553174548698
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
"build": "webpack -d --hide-modules",
"build:prod": "webpack -p --hide-modules",
"test": "tsc --noEmit",
"lint": "eslint src -f codeframe --ext .ts",
"lint:fix": "eslint src -f codeframe --ext .ts --fix",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"serve": "serve ../../.. -p 5000",
"clean": "rimraf dist"
},