mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
43 lines
909 B
JSON
43 lines
909 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"parserOptions": {
|
||
|
"tsconfigRootDir": "",
|
||
|
"project": [
|
||
|
"./tsconfig.json"
|
||
|
]
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-use-before-define": "off",
|
||
|
"no-debugger": "warn",
|
||
|
"default-param-last": "off",
|
||
|
"@typescript-eslint/consistent-type-imports": [
|
||
|
"error",
|
||
|
{
|
||
|
"prefer": "type-imports",
|
||
|
"disallowTypeAnnotations": false
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint",
|
||
|
"testing-library"
|
||
|
],
|
||
|
"extends": [
|
||
|
"next/core-web-vitals",
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||
|
"prettier"
|
||
|
],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": [
|
||
|
"**/__tests__/**/*.[jt]s?(x)",
|
||
|
"**/?(*.)+(spec|test).[jt]s?(x)"
|
||
|
],
|
||
|
"extends": ["plugin:testing-library/react"]
|
||
|
}
|
||
|
]
|
||
|
}
|