mirror of
https://github.com/spacebarchat/client.git
synced 2024-11-21 18:02:32 +01:00
21 lines
620 B
Plaintext
21 lines
620 B
Plaintext
{
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:react-hooks/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["react-refresh"],
|
|
"root": true,
|
|
"rules": {
|
|
"no-mixed-spaces-and-tabs": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"react-hooks/exhaustive-deps": "off",
|
|
"react-hooks/rules-of-hooks": "warn",
|
|
"@typescript-eslint/ban-ts-comment": "warn"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist"]
|
|
}
|