We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0c1c8 commit 17a1770Copy full SHA for 17a1770
Makefile
@@ -1,5 +1,4 @@
1
BROWSERIFY := "node_modules/.bin/browserify"
2
-ESLINT := "node_modules/.bin/eslint"
3
KARMA := "node_modules/.bin/karma"
4
MOCHA := "bin/mocha"
5
NYC := "node_modules/.bin/nyc"
@@ -34,7 +33,7 @@ clean:
34
33
35
lint:
36
@printf "==> [Test :: Lint]\n"
37
- $(ESLINT) . "bin/*"
+ npm run lint
38
39
test-node: test-bdd test-tdd test-qunit test-exports test-unit test-integration test-jsapi test-compilers test-glob test-requires test-reporters test-only test-global-only
40
package.json
@@ -299,6 +299,7 @@
299
"npm": ">= 1.4.x"
300
},
301
"scripts": {
302
+ "lint": "eslint . bin/*",
303
"test": "make test && make clean",
304
"precoverage": "rm -rf coverage",
305
"coverage": "COVERAGE=true npm run test",
0 commit comments