Skip to content

Commit

Permalink
Turn off node/no-unpublished-* rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mt-ronkorving committed May 28, 2020
1 parent bc20bcf commit 3d73a92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions eslintrc/nodejs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@ rules:
max-lines: 0
max-lines-per-function: 0
node/no-sync: 0
node/no-unpublished-import: 0 # because devDependencies are unpublished
node/no-unpublished-require: 0 # because devDependencies are unpublished
6 changes: 3 additions & 3 deletions eslintrc/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ rules:
node/no-new-require: 2
node/no-path-concat: 2
node/no-process-exit: 2
node/no-unpublished-bin: 2
node/no-unpublished-import: 2
node/no-unpublished-require: 2
node/no-unpublished-bin: 0 # We tend not to publish our work
node/no-unpublished-import: 0 # We tend not to publish our work
node/no-unpublished-require: 0 # We tend not to publish our work
node/no-unsupported-features/es-builtins: 0
node/no-unsupported-features/es-syntax: 0
node/no-unsupported-features/node-builtins: 0
Expand Down

0 comments on commit 3d73a92

Please sign in to comment.