- eslint OK - import OK - jsdoc OK - node OK - oxc OK - promise OK - typescript OK - unicorn en cours
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
import type { DummyRuleMap } from "oxlint";
|
|
|
|
const functionalRules: DummyRuleMap = {
|
|
"functional/immutable-data": "deny",
|
|
"functional/no-let": "deny",
|
|
"functional/no-throw-statements": "deny",
|
|
"functional/no-try-statements": "deny",
|
|
"functional/prefer-property-signatures": "deny",
|
|
"functional/readonly-type": ["deny", "generic"],
|
|
};
|
|
|
|
export default functionalRules;
|