Skip to content

Commit

Permalink
Disable shebang rule
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Jan 4, 2021
1 parent f896b2d commit ec58a93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
],
"globals": { "Set": true, "Symbol": true },
"rules": {
// TODO
"node/no-unsupported-features/es-builtins": 0,

"array-callback-return": [
"error",
{
Expand Down Expand Up @@ -56,7 +53,10 @@
"jsdoc/require-param-name": 2,
"jsdoc/require-param-type": 2,
"jsdoc/require-param": 2,
"jsdoc/valid-types": 2
"jsdoc/valid-types": 2,

"node/no-unsupported-features/es-builtins": 0, // TODO
"node/shebang": 0
},
"settings": {
"jsdoc": {
Expand Down
2 changes: 2 additions & 0 deletions benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

var Suites = require('./suite');
var suites = new Suites();

Expand Down

0 comments on commit ec58a93

Please sign in to comment.