This commit is contained in:
gcch 2026-03-29 22:36:32 +02:00
commit e989c5f14d
12 changed files with 1622 additions and 1445 deletions

12
rules/functional.ts Normal file
View file

@ -0,0 +1,12 @@
import type { DummyRuleMap } from "oxlint";
const functionalRules: DummyRuleMap = {
"functional/immutable-data": "error",
"functional/no-let": "error",
"functional/no-throw-statements": "error",
"functional/no-try-statements": "error",
"functional/prefer-property-signatures": "error",
"functional/readonly-type": ["error", "generic"],
};
export default functionalRules;