25 lines
666 B
JSON
25 lines
666 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true,
|
|
"es2017": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"tsconfigRootDir": "."
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"no-empty-function": ["warn"],
|
|
"@typescript-eslint/no-empty-function": ["warn"],
|
|
"@typescript-eslint/no-var-requires": ["warn"]
|
|
}
|
|
}
|