mirror of
https://github.com/spacebarchat/client.git
synced 2024-11-21 18:02:32 +01:00
19 lines
578 B
Plaintext
19 lines
578 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-refresh/only-export-components": ["warn", { "allowConstantExport": true }]
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist"]
|
|
}
|