Skip to content

Commit

Permalink
[Tests] ensure bin/tape is linted
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 23, 2019
1 parent ad75f86 commit b5b40ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions bin/tape
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ var parseOpts = require('minimist');
var glob = require('glob');

var opts = parseOpts(process.argv.slice(2), {
alias: { r: 'require' },
string: 'require',
default: { r: [] }
});
alias: { r: 'require' },
string: 'require',
default: { r: [] }
});

var cwd = process.cwd();

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"scripts": {
"prelint": "eclint check",
"lint": "eslint .",
"lint": "eslint . bin/*",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "tap test/*.js"
Expand Down

0 comments on commit b5b40ae

Please sign in to comment.