|
| 1 | +import type { Linter } from "eslint"; |
| 2 | + |
| 3 | +export const rules: Linter.Config["rules"] = { |
| 4 | + "callback-return": "off", |
| 5 | + "global-require": "off", |
| 6 | + "handle-callback-err": "off", |
| 7 | + "id-blacklist": "off", |
| 8 | + "indent-legacy": "off", |
| 9 | + "lines-around-directive": "off", |
| 10 | + "newline-after-var": "off", |
| 11 | + "newline-before-return": "off", |
| 12 | + "no-buffer-constructor": "off", |
| 13 | + "no-catch-shadow": "off", |
| 14 | + "no-mixed-requires": "off", |
| 15 | + "no-native-reassign": "off", |
| 16 | + "no-negated-in-lhs": "off", |
| 17 | + "no-new-require": "off", |
| 18 | + "no-path-concat": "off", |
| 19 | + "no-process-env": "off", |
| 20 | + "no-process-exit": "off", |
| 21 | + "no-restricted-modules": "off", |
| 22 | + "no-spaced-func": "off", |
| 23 | + "no-sync": "off", |
| 24 | + "prefer-reflect": "off", |
| 25 | + "require-jsdoc": "off", |
| 26 | + "valid-jsdoc": "off", |
| 27 | +}; |
0 commit comments