crusade-tracker/.eslintrc.json

28 lines
595 B
JSON
Raw Permalink Normal View History

2021-01-18 20:27:50 +00:00
{
"plugins": ["@typescript-eslint/tslint"],
"extends": ["jhipster"],
"parserOptions": {
"project": "./tsconfig.base.json"
},
"rules": {
"@typescript-eslint/tslint/config": [
"error",
{
"lintFile": "./tslint.json"
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}
],
"@typescript-eslint/no-non-null-assertion": "off",
"no-console": "warn",
"@typescript-eslint/ban-ts-ignore": "off",
"guard-for-in": "off"
2021-01-18 20:27:50 +00:00
}
}