remove linting since we're too bleeding edge :'(

This commit is contained in:
Sebastian McKenzie
2015-02-26 01:00:24 +11:00
parent 88563a0c26
commit 845f1ce65e
4 changed files with 2 additions and 35 deletions

View File

@@ -8,7 +8,7 @@ BABEL_CMD = node_modules/babel/bin/babel
export NODE_ENV = test
.PHONY: clean test test-cov test-clean lint test-travis test-simple test-all test-browser publish build bootstrap publish-core publish-runtime build-core watch-core
.PHONY: clean test test-cov test-clean test-travis test-simple test-all test-browser publish build bootstrap publish-core publish-runtime build-core watch-core
build-core:
node $(BABEL_CMD) src --out-dir lib --copy-files
@@ -36,13 +36,10 @@ build:
clean:
rm -rf coverage templates.json test/tmp dist
lint:
$(JSHINT_CMD) --reporter node_modules/jshint-stylish/stylish.js src bin
test-clean:
rm -rf test/tmp
test: lint
test:
$(MOCHA_CMD)
make test-clean