diff --git a/commitlint.config.js b/commitlint.config.js index 422b194..0cf61d7 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1,3 @@ +'use strict'; + module.exports = { extends: ['@commitlint/config-conventional'] }; diff --git a/index.js b/index.js index a69f677..6f908bc 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,4 @@ +'use strict'; + module.exports = require('./lib/queue'); module.exports.Job = require('./lib/job'); diff --git a/package.json b/package.json index 35c675c..e7ed667 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "sinon": "^7.4.2" }, "scripts": { - "lint": "eslint lib test", + "lint": "eslint lib test *.js", "pretest": "npm run lint", "test": "NODE_ENV=test mocha --exit", "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --exit -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",