Files
patchpass/UI/.eslintrc.cjs
T
Space-Banane 7e05dd918c
Deploy / Build (push) Successful in 28s
Deploy / Test & Lint (push) Failing after 29s
Deploy / Build and Push Docker Image (push) Has been skipped
Patchpass V1
2026-07-18 20:14:44 +02:00

18 lines
708 B
JavaScript

module.exports = {
root: true,
env: { browser: true, es2022: true },
parser: "@typescript-eslint/parser",
parserOptions: { ecmaVersion: "latest", sourceType: "module", ecmaFeatures: { jsx: true } },
plugins: ["@typescript-eslint", "react-hooks"],
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
settings: {},
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"no-empty": ["error", { allowEmptyCatch: true }],
},
ignorePatterns: ["build/", "node_modules/", "vite.config.ts"],
};