25 lines
714 B
JavaScript
25 lines
714 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ["./tsconfig.json"],
|
|
},
|
|
plugins: ["@typescript-eslint", "prettier"],
|
|
extends: [
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"prettier",
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"react/prop-types": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0
|
|
},
|
|
};
|