Changed lint option to make it easier to see

master
Jun Koyama 2020-10-05 23:45:54 +09:00
parent 6a61a4c349
commit b7b45d2eab
No known key found for this signature in database
GPG Key ID: 7E7F553174548698
2 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,6 @@ rules:
- error
- allow:
- constructors
'@typescript-eslint/no-namespace': warn
'no-fallthrough': warn
'@typescript-eslint/unbound-method': off
'no-inner-declarations': off

View File

@ -3,8 +3,8 @@
"scripts": {
"build": "tsc",
"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",
"clean": "rimraf dist"
},
"devDependencies": {