nxtgauge-frontend-solid/.eslintrc.cjs

61 lines
1.8 KiB
JavaScript
Raw Normal View History

/* eslint-env node */
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["solid"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:solid/recommended",
],
overrides: [
{
files: ["**/*.tsx"],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
settings: {
solid: {
noImportReact: true,
},
},
rules: {
2026-08-12 13:38:38 +02:00
// Rules valid in eslint-plugin-solid v0.14.5
"solid/jsx-no-undef": "error",
"solid/prefer-classlist": "error",
2026-08-12 13:38:38 +02:00
"solid/prefer-for": "error", // catches .map() in JSX — use <For> instead
"solid/reactivity": "warn", // catches signals used outside reactive context
"solid/event-handlers": "warn", // catches non-standard event handler props
"solid/no-react-specific-props": "error",
"solid/no-innerhtml": "warn", // prefer children over innerHTML
"solid/no-destructure": "warn", // catches destructured props/signals
"solid/self-closing-comp": "warn",
},
},
],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", destructuredArrayIgnorePattern: "^_" }],
"@typescript-eslint/no-explicit-any": "off",
"arrow-body-style": ["warn", "as-needed"],
curly: ["error", "multi-line"],
"no-console": "off",
"no-debugger": "warn",
"no-unused-vars": "off",
"prefer-const": "error",
},
env: {
browser: true,
},
ignorePatterns: [
"dist",
".output",
"node_modules",
"coverage",
"test-results",
"playwright-report",
],
};