You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
562 B
29 lines
562 B
{ |
|
"env": { |
|
"browser": true, |
|
"es2022": true |
|
}, |
|
"parserOptions": { |
|
"ecmaVersion": "latest", |
|
"sourceType": "module", |
|
"ecmaFeatures": { |
|
"jsx": true |
|
} |
|
}, |
|
"extends": [ |
|
"eslint:recommended", |
|
"plugin:react/recommended", |
|
"plugin:react-hooks/recommended" |
|
], |
|
"plugins": ["react", "react-hooks"], |
|
"settings": { |
|
"react": { |
|
"version": "detect" |
|
} |
|
}, |
|
"rules": { |
|
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], |
|
"react/react-in-jsx-scope": "off", |
|
"react/prop-types": "warn" |
|
} |
|
}
|
|
|