mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
32 lines
914 B
JSON
32 lines
914 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"standard-with-typescript",
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": ["tsconfig.json"]
|
|
},
|
|
"plugins": [
|
|
"react", "simple-import-sort"
|
|
],
|
|
"rules": {
|
|
"simple-import-sort/imports": "warn",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"no-trailing-spaces": "warn",
|
|
"no-multiple-empty-lines": "warn",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/semi": "off",
|
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
"@typescript-eslint/space-before-function-paren": "off",
|
|
"@typescript-eslint/indent": "off",
|
|
"object-shorthand": "off"
|
|
}
|
|
}
|