Skip to content

Commit 0d9ca02

Browse files
committedFeb 22, 2022
Fix ignore of n/no-process-exit
1 parent a8e0fbe commit 0d9ca02

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@ Then add a `.eslintrc` with the following:
7171

7272
#### :wrench: Overrides of added ESLint rule packages
7373

74-
* :mute: [`no-process-exit`](https://eslint.org/docs/rules/no-process-exit)*deactivated* – added by `plugin:n/recommended`, but deactivated in favor of [`unicorn/no-process-exit`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-process-exit.md)
75-
7674
* :mute: [`mocha/no-mocha-arrows`](https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/docs/rules/no-mocha-arrows.md)*deactivated* – while [Mocha discourages arrow functions](https://mochajs.org/#arrow-functions) I find it more readable to use them + I find it safe when type checking ones test files as then the type checking will notify one when one tries to do a `this.setTimeout()` or similar in an arrow function where there is no such local context
7775

76+
* :mute: [`n/no-process-exit`](https://eslint.org/docs/rules/no-process-exit)*deactivated* – added by `plugin:n/recommended`, but deactivated in favor of [`unicorn/no-process-exit`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-process-exit.md)
7877
* :wrench: [`n/no-unsupported-features/es-syntax`](https://github.com/weiran-zsd/eslint-plugin-node/blob/master/docs/rules/no-unsupported-features/es-syntax.md)*changed* – set to always allow dynamic `import()`, pending [correct detection](https://github.com/weiran-zsd/eslint-plugin-node/issues/250) of support
7978

8079
* :mute: [`security/detect-object-injection`](https://github.com/nodesecurity/eslint-plugin-security#detect-object-injection)*deactivated* – causes too many false errors

‎eslintrc.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
"ignoreRestSiblings": true
3838
}],
3939
"n/no-deprecated-api": "warn",
40-
41-
"no-process-exit": "off",
40+
"n/no-process-exit": "off",
4241

4342
"func-style": ["warn", "expression", { "allowArrowFunctions": true }],
4443
"no-console": "warn",

0 commit comments

Comments
 (0)
Please sign in to comment.