19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|||
|
|
"env": {
|
||
|
|
"es6": true
|
||
|
|
},
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||
|
|
"prettier"
|
||
|
|
],
|
||
|
|
"ignorePatterns": ["**/.eslintrc.cjs"],
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
||
|
|
"reportUnusedDisableDirectives": true,
|
||
|
|
"root": true,
|
||
|
|
"rules": {}
|
||
|
|
}
|