2023-12-08 14:00:33 -05:00
|
|
|
module.exports = {
|
2024-12-30 09:53:21 -07:00
|
|
|
env: { browser: true, amd: true, node: true, es2020: true },
|
2023-12-08 14:00:33 -05:00
|
|
|
extends: [
|
2024-12-30 09:53:21 -07:00
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:react-hooks/recommended",
|
2023-12-08 14:00:33 -05:00
|
|
|
],
|
2024-12-30 09:53:21 -07:00
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
|
|
|
|
plugins: ["react-refresh"],
|
2023-12-08 14:00:33 -05:00
|
|
|
rules: {
|
2024-12-30 09:53:21 -07:00
|
|
|
"react-refresh/only-export-components": "warn",
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
|
|
"@typescript-eslint/no-unused-expressions": "off",
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
2023-12-08 14:00:33 -05:00
|
|
|
},
|
2024-12-30 09:53:21 -07:00
|
|
|
};
|