flowable-devops/frontend/.eslintrc.json
dengqichen d840effe9e 提交
2025-10-13 14:04:05 +08:00

15 lines
626 B
JSON

{
"env": { "browser": true, "es2021": true },
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": { "ecmaVersion": 2021, "sourceType": "module" },
"plugins": ["react", "@typescript-eslint"],
"settings": { "react": { "version": "detect" } },
"rules": {
"react-hooks/exhaustive-deps": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
}
}