42 lines
726 B
JSON
42 lines
726 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"jsx": true,
|
|
"useJSXTextNode": true,
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"warn",
|
|
{
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"singleQuote": false,
|
|
"printWidth": 120,
|
|
"tabWidth": 4,
|
|
"useTabs": true
|
|
}
|
|
],
|
|
"@typescript-eslint/no-explicit-any": [
|
|
"warn",
|
|
{
|
|
"ignoreRestArgs": true
|
|
}
|
|
],
|
|
"@typescript-eslint/no-non-null-assertion": [
|
|
"off"
|
|
]
|
|
}
|
|
}
|