{ "$schema": "./node_modules/oxlint/configuration_schema.json", "plugins": ["typescript", "import", "unicorn"], "jsPlugins": ["./eslint-rules/local-rules.js"], "categories": { "correctness": "off" }, "options": { "typeAware": true }, "env": { "builtin": true, "es2018": true }, "ignorePatterns": ["openspec/**", "bun.lock", "bin/**", "eslint-rules/**", "skills-lock.json"], "rules": { "constructor-super": "error", "for-direction": "error", "getter-return": "error", "no-async-promise-executor": "error", "no-case-declarations": "error", "no-class-assign": "error", "no-compare-neg-zero": "error", "no-cond-assign": "error", "no-const-assign": "error", "no-constant-binary-expression": "error", "no-constant-condition": "error", "no-control-regex": "error", "no-debugger": "error", "no-delete-var": "error", "no-dupe-class-members": "error", "no-dupe-else-if": "error", "no-dupe-keys": "error", "no-duplicate-case": "error", "no-empty": "error", "no-empty-character-class": "error", "no-empty-pattern": "error", "no-empty-static-block": "error", "no-ex-assign": "error", "no-extra-boolean-cast": "error", "no-fallthrough": "error", "no-func-assign": "error", "no-global-assign": "error", "no-import-assign": "error", "no-invalid-regexp": "error", "no-irregular-whitespace": "error", "no-loss-of-precision": "error", "no-misleading-character-class": "error", "no-new-native-nonconstructor": "error", "no-nonoctal-decimal-escape": "error", "no-obj-calls": "error", "no-prototype-builtins": "error", "no-redeclare": "error", "no-regex-spaces": "error", "no-self-assign": "error", "no-setter-return": "error", "no-shadow-restricted-names": "error", "no-sparse-arrays": "error", "no-this-before-super": "error", "no-unassigned-vars": "error", "no-unreachable": "error", "no-unsafe-finally": "error", "no-unsafe-negation": "error", "no-unsafe-optional-chaining": "error", "no-unused-labels": "error", "no-unused-private-class-members": "error", "no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ], "no-useless-backreference": "error", "no-useless-catch": "error", "no-useless-escape": "error", "no-with": "error", "preserve-caught-error": "error", "require-yield": "error", "use-isnan": "error", "valid-typeof": "error", "no-array-constructor": "error", "no-unused-expressions": "error", "import/namespace": "error", "import/default": "error", "import/no-named-as-default": "warn", "import/no-named-as-default-member": "warn", "import/no-duplicates": "warn", "typescript/await-thenable": "error", "typescript/ban-ts-comment": "error", "typescript/no-array-delete": "error", "typescript/no-base-to-string": "error", "typescript/no-duplicate-enum-values": "error", "typescript/no-duplicate-type-constituents": "error", "typescript/no-empty-object-type": "error", "typescript/no-explicit-any": "error", "typescript/no-extra-non-null-assertion": "error", "typescript/no-floating-promises": "error", "typescript/no-for-in-array": "error", "typescript/no-implied-eval": "error", "typescript/no-misused-new": "error", "typescript/no-misused-promises": "error", "typescript/no-namespace": "error", "typescript/no-non-null-asserted-optional-chain": "error", "typescript/no-redundant-type-constituents": "error", "typescript/no-require-imports": "error", "typescript/no-this-alias": "error", "typescript/no-unnecessary-type-assertion": "error", "typescript/no-unnecessary-type-constraint": "error", "typescript/no-unsafe-argument": "error", "typescript/no-unsafe-assignment": "error", "typescript/no-unsafe-call": "error", "typescript/no-unsafe-declaration-merging": "error", "typescript/no-unsafe-enum-comparison": "error", "typescript/no-unsafe-function-type": "error", "typescript/no-unsafe-member-access": "error", "typescript/no-unsafe-return": "error", "typescript/no-unsafe-unary-minus": "error", "typescript/no-wrapper-object-types": "error", "typescript/only-throw-error": "error", "typescript/prefer-as-const": "error", "typescript/prefer-namespace-keyword": "error", "typescript/prefer-promise-reject-errors": "error", "typescript/require-await": "error", "typescript/restrict-plus-operands": "error", "typescript/restrict-template-expressions": "error", "typescript/triple-slash-reference": "error", "typescript/unbound-method": "error", "typescript/adjacent-overload-signatures": "error", "typescript/array-type": [ "error", { "default": "array-simple" } ], "typescript/ban-tslint-comment": "error", "typescript/class-literal-property-style": "error", "typescript/consistent-generic-constructors": "error", "typescript/consistent-indexed-object-style": "error", "typescript/consistent-type-assertions": [ "error", { "assertionStyle": "as" } ], "typescript/consistent-type-definitions": "error", "typescript/dot-notation": "error", "typescript/no-confusing-non-null-assertion": "error", "typescript/no-inferrable-types": "error", "typescript/non-nullable-type-assertion-style": "error", "typescript/prefer-find": "error", "typescript/prefer-for-of": "error", "typescript/prefer-function-type": "error", "typescript/prefer-includes": "error", "typescript/prefer-nullish-coalescing": "error", "typescript/prefer-regexp-exec": "error", "typescript/prefer-string-starts-ends-with": "error", "typescript/consistent-type-imports": [ "error", { "prefer": "type-imports" } ] }, "overrides": [ { "files": ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"], "rules": { "constructor-super": "off", "getter-return": "off", "no-class-assign": "off", "no-const-assign": "off", "no-dupe-class-members": "off", "no-dupe-keys": "off", "no-func-assign": "off", "no-import-assign": "off", "no-new-native-nonconstructor": "off", "no-obj-calls": "off", "no-redeclare": "off", "no-setter-return": "off", "no-this-before-super": "off", "no-unreachable": "off", "no-unsafe-negation": "off", "no-var": "error", "no-with": "off", "prefer-const": "error", "prefer-rest-params": "error", "prefer-spread": "error" } }, { "files": ["src/**/*.{ts,tsx}"], "rules": { "local-rules/enforce-catch-type": "warn", "local-rules/no-empty-function": "error" } }, { "files": ["src/server/db/**/*.ts"], "rules": { "no-restricted-imports": [ "error", { "paths": [ { "importNames": ["sqliteTable"], "message": "请从 ./helpers.ts 导入 sqliteTable,并在列定义中展开 baseColumns。参见 src/server/db/helpers.ts。", "name": "drizzle-orm/sqlite-core" } ] } ] } }, { "files": ["src/server/db/helpers.ts"], "rules": { "no-restricted-imports": "off" } }, { "files": ["src/server/**/*.ts"], "rules": { "no-console": "error" } }, { "files": ["src/server/logger.ts"], "rules": { "no-console": "off" } }, { "files": ["src/web/**/*.{ts,tsx}"], "rules": { "no-console": "error", "no-restricted-imports": [ "error", { "patterns": [ { "group": [ "../server/*", "../server/**", "../**/server/*", "../**/server/**", "../../server/*", "../../server/**", "src/server/*", "src/server/**" ], "message": "前端不得导入 src/server 后端运行时实现;请改用 src/shared 类型或 HTTP API。" } ] } ], "react/rules-of-hooks": "error", "react/exhaustive-deps": "warn", "react/only-export-components": [ "warn", { "allowConstantExport": true } ] }, "plugins": ["react"] }, { "files": ["src/web/**/logger.ts"], "rules": { "no-console": "off" } } ] }