mirror of
https://github.com/lune-org/docs.git
synced 2024-12-12 13:00:37 +00:00
15 lines
405 B
Text
15 lines
405 B
Text
{
|
|
"env": { "browser": true, "es2020": true },
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "ecmaVersion": "latest", "sourceType": "module" },
|
|
"plugins": ["react-refresh"],
|
|
"rules": {
|
|
"semi": ["error", "never"],
|
|
"react-refresh/only-export-components": "warn"
|
|
}
|
|
}
|