1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-21 09:52:31 +01:00
client/.eslintrc
2023-09-15 13:32:55 -04:00

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"]
}