1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00
client/.eslintrc

19 lines
578 B
Plaintext
Raw Normal View History

2023-04-14 03:51:36 +02:00
{
2023-09-06 20:55:23 +02:00
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:react-hooks/recommended"],
2023-04-14 03:51:36 +02:00
"parser": "@typescript-eslint/parser",
2023-09-06 20:55:23 +02:00
"plugins": ["react-refresh"],
2023-04-14 03:51:36 +02:00
"root": true,
"rules": {
"no-mixed-spaces-and-tabs": "off",
2023-04-30 22:56:03 +02:00
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-non-null-assertion": "off",
2023-09-06 20:55:23 +02:00
"@typescript-eslint/no-unused-vars": "off",
"react-refresh/only-export-components": ["warn", { "allowConstantExport": true }]
2023-04-14 03:51:36 +02:00
},
"env": {
2023-09-06 20:55:23 +02:00
"browser": true,
"es2020": true
},
"ignorePatterns": ["node_modules", "dist"]
2023-04-14 03:51:36 +02:00
}