2026-04-03

- eslint OK
- import OK
- jsdoc OK
- node OK
- oxc OK
- promise OK
- typescript OK
- unicorn en cours
This commit is contained in:
gcch 2026-04-03 23:57:57 +02:00
commit bedd1fa23a
22 changed files with 3081 additions and 1600 deletions

12
rules/node.ts Normal file
View file

@ -0,0 +1,12 @@
import type { DummyRuleMap } from "oxlint";
const nodeRules: DummyRuleMap = {
"node/global-require": "deny",
"node/handle-callback-err": "allow",
"node/no-exports-assign": "deny",
"node/no-new-require": "deny",
"node/no-path-concat": "deny",
"node/no-process-env": "deny",
};
export default nodeRules;