mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-23 21:44:55 +03:00
47 lines
901 B
JavaScript
47 lines
901 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
settings: {
|
||
|
react: {
|
||
|
version: "detect",
|
||
|
},
|
||
|
},
|
||
|
extends: [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:react/jsx-runtime",
|
||
|
"plugin:react-hooks/recommended",
|
||
|
"prettier",
|
||
|
],
|
||
|
overrides: [
|
||
|
{
|
||
|
env: {
|
||
|
node: true,
|
||
|
},
|
||
|
files: [".eslintrc.{js,cjs}"],
|
||
|
parserOptions: {
|
||
|
sourceType: "script",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
parserOptions: {
|
||
|
ecmaVersion: "latest",
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
plugins: ["@typescript-eslint", "react"],
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
argsIgnorePattern: "^_",
|
||
|
varsIgnorePattern: "^_",
|
||
|
caughtErrorsIgnorePattern: "^_",
|
||
|
},
|
||
|
],
|
||
|
"@typescript-eslint/no-explicit-any": "warn",
|
||
|
},
|
||
|
};
|