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 - error
- allow: - allow:
- constructors - constructors
'@typescript-eslint/no-namespace': warn
'no-fallthrough': warn 'no-fallthrough': warn
'@typescript-eslint/unbound-method': off '@typescript-eslint/unbound-method': off
'no-inner-declarations': off 'no-inner-declarations': off

View File

@ -3,8 +3,8 @@
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"test": "tsc --noEmit", "test": "tsc --noEmit",
"lint": "eslint src -f codeframe --ext .ts", "lint": "eslint src --ext .ts",
"lint:fix": "eslint src -f codeframe --ext .ts --fix", "lint:fix": "eslint src --ext .ts --fix",
"clean": "rimraf dist" "clean": "rimraf dist"
}, },
"devDependencies": { "devDependencies": {