mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
26 lines
682 B
JSON
26 lines
682 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended-type-checked",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": ["tsconfig.json", "tsconfig.node.json"]
|
|
},
|
|
"plugins": ["react-refresh", "simple-import-sort", "eslint-plugin-tsdoc"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"require-jsdoc": "off",
|
|
"react-refresh/only-export-components": ["off", { "allowConstantExport": true }],
|
|
"simple-import-sort/imports": "warn",
|
|
"tsdoc/syntax": "warn"
|
|
}
|
|
}
|