examples/Makefile
bananaappletw 76f55514ca Add eslint
2016-10-20 14:02:09 +08:00

12 lines
174 B
Makefile

lint:
@./node_modules/.bin/eslint .
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--harmony \
--reporter spec \
--require should \
*/test.js
.PHONY: lint test