Files
Dorod-Sky/skyvern-frontend/.eslintrc

28 lines
587 B
Plaintext
Raw Normal View History

2024-03-20 21:09:47 +03:00
{
"root": true,
"env": { "browser": true, "es2020": true },
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"ignorePatterns": [
"dist",
".eslintrc.cjs",
"vite.config.ts",
"vitest.config.ts"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["react-refresh"],
"rules": {
"react-refresh/only-export-components": [
"warn",
{ "allowConstantExport": true }
]
}
}