Remove unused tslint

This commit is contained in:
AkiraFukushima 2019-07-08 23:05:50 +09:00
parent 00a9a8a997
commit c5905d1d6c
3 changed files with 1 additions and 28 deletions

View file

@ -48,8 +48,6 @@
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.17.1",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0"
"prettier": "^1.17.1"
}
}

View file

@ -7,11 +7,3 @@ linter:
ext: '.js,.ts'
ignore-path: .gitignore
ignore-pattern: /node_modules/*
tslint:
npm_install: true
config: 'tslint.json'
exclude: 'node_modules/**'
project: 'tsconfig.json'
type-check: true
glob: '**/*.ts{,x}'

View file

@ -1,17 +0,0 @@
{
"extends": [
"tslint-config-standard"
],
"defaultSeverity": "error",
"jsRules": {},
"rules": {
"variable-name": [
true,
"ban-keywords"
],
"space-before-function-paren": [
"never"
]
},
"rulesDirectory": []
}