Skip to content

Commit 3947481

Browse files
committed
fix(build): use eslint in lint script
1 parent 33f985f commit 3947481

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "OAuth provider for express",
55
"main": "index.js",
66
"scripts": {
7-
"lint": "jshint .",
7+
"lint": "npx eslint .",
8+
"lint:fix": "npx eslint . --fix",
89
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'",
910
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'",
1011
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --watch 'test/**/*_test.js'",

0 commit comments

Comments
 (0)