Skip to content

Commit

Permalink
fix(deps): replace dependency eslint-plugin-node with eslint-plugin-n (
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoco committed Mar 26, 2024
1 parent 0bd8195 commit efbe3a8
Show file tree
Hide file tree
Showing 6 changed files with 381 additions and 322 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:n/recommended",
"prettier"
],
"plugins": [
"node",
"n",
"prettier"
],
"rules": {
Expand Down Expand Up @@ -48,11 +48,11 @@
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/camelcase": "off",
"node/no-missing-import": "off",
"node/no-empty-function": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-missing-require": "off",
"node/shebang": "off",
"n/no-missing-import": "off",
"n/no-empty-function": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/no-missing-require": "off",
"n/shebang": "off",
"no-dupe-class-members": "off",
"require-atomic-updates": "off"
},
Expand Down
Loading

0 comments on commit efbe3a8

Please sign in to comment.