33 lines
565 B
JavaScript
33 lines
565 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
extends: [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:react/recommended",
|
||
|
],
|
||
|
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: {
|
||
|
"react/react-in-jsx-scope": "off",
|
||
|
"no-mixed-spaces-and-tabs": "off",
|
||
|
},
|
||
|
};
|