Fix eslint

This commit is contained in:
Tom MacWright 2015-07-10 10:27:36 -04:00
parent f3311b32b4
commit 22bfee0958
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ var path = require('path');
* @param {string} error
* @param {...*} varags format arguments
*/
module.exports = function(tag, comment, error) {
module.exports = function (tag, comment, error) {
var relativePath = path.relative(process.cwd(), comment.context.file),
lineNumber = (tag ? tag.lineNumber : 0) + comment.loc.start.line;

View File

@ -65,6 +65,6 @@
},
"scripts": {
"cover": "istanbul cover prova test/*.js test/lib/*.js test/streams/*.js --dir $CIRCLE_ARTIFACTS && coveralls < $CIRCLE_ARTIFACTS/lcov.info",
"test": "eslint --no-eslintrc -c .eslintrc index.js test/*.js test/streams/*.js && prova test/*.js test/lib/*.js test/streams/*.js"
"test": "eslint --no-eslintrc -c .eslintrc lib index.js test/*.js test/streams/*.js && prova test/*.js test/lib/*.js test/streams/*.js"
}
}