Skip to content

Commit efbe3a8

Browse files
authored
fix(deps): replace dependency eslint-plugin-node with eslint-plugin-n (#865)
1 parent 0bd8195 commit efbe3a8

File tree

6 files changed

+381
-322
lines changed

6 files changed

+381
-322
lines changed

.eslintrc.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"extends": [
33
"eslint:recommended",
4-
"plugin:node/recommended",
4+
"plugin:n/recommended",
55
"prettier"
66
],
77
"plugins": [
8-
"node",
8+
"n",
99
"prettier"
1010
],
1111
"rules": {
@@ -48,11 +48,11 @@
4848
"@typescript-eslint/explicit-module-boundary-types": "off",
4949
"@typescript-eslint/ban-types": "off",
5050
"@typescript-eslint/camelcase": "off",
51-
"node/no-missing-import": "off",
52-
"node/no-empty-function": "off",
53-
"node/no-unsupported-features/es-syntax": "off",
54-
"node/no-missing-require": "off",
55-
"node/shebang": "off",
51+
"n/no-missing-import": "off",
52+
"n/no-empty-function": "off",
53+
"n/no-unsupported-features/es-syntax": "off",
54+
"n/no-missing-require": "off",
55+
"n/shebang": "off",
5656
"no-dupe-class-members": "off",
5757
"require-atomic-updates": "off"
5858
},

0 commit comments

Comments
 (0)