mirror of
https://github.com/dpup/meshstream.git
synced 2026-03-28 17:42:37 +01:00
18 lines
434 B
JSON
18 lines
434 B
JSON
{
|
|
"root": true,
|
|
"env": { "browser": true, "es2020": true },
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"ignorePatterns": ["dist", ".eslintrc.cjs"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["react-refresh"],
|
|
"rules": {
|
|
"react-refresh/only-export-components": [
|
|
"warn",
|
|
{ "allowConstantExport": true }
|
|
]
|
|
}
|
|
} |