Skip to content

Commit

Permalink
chore: fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Sep 29, 2022
1 parent 1fc9682 commit 4726bd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .dist.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"no-constant-condition": "off",
"no-control-regex": "off",
"no-fallthrough": "off",
"operator-linebreak": "off"
"operator-linebreak": "off",
"node/no-missing-require": "warn"
},
"globals": {
"regeneratorRuntime": "writable"
Expand Down
6 changes: 4 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@
"no-prototype-builtins": "off",
"node/no-deprecated-api": "warn",
"node/no-extraneous-require": "warn",
"no-unused-vars": "warn"
"no-unused-vars": "warn",
"node/no-missing-require": "warn"
}
}
],
"rules": {
"node/no-unsupported-features/node-builtins": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-exports-assign": "off"
"node/no-exports-assign": "off",
"no-unused-vars": "warn"
},
"globals": {
}
Expand Down

0 comments on commit 4726bd8

Please sign in to comment.