mirror of
https://github.com/XFox111/MuiCharts.git
synced 2026-04-22 06:51:05 +03:00
9c05f4333b
- Updated README.md
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
env: { browser: true, es2020: true },
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
|
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
],
|
|
ignorePatterns: ["dist", ".eslintrc.cjs"],
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["react-refresh"],
|
|
rules: {
|
|
"react-refresh/only-export-components": [
|
|
"warn",
|
|
{ allowConstantExport: true },
|
|
],
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-confusing-void-expression": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/prefer-for-of": "warn",
|
|
"no-empty": "warn",
|
|
"@typescript-eslint/no-inferrable-types": "off",
|
|
"@typescript-eslint/consistent-indexed-object-style": "warn",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/no-unnecessary-type-assertion": "warn",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
project: ["./tsconfig.json", "./tsconfig.node.json"],
|
|
tsConfigRootDir: __dirname,
|
|
}
|
|
};
|