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

@ -1 +0,0 @@
src/babel/transformation/templates

View File

@ -1,27 +0,0 @@
{
"esnext": true,
"indent": 2,
"freeze": true,
"validthis": true,
"camelcase": true,
"unused": true,
"eqnull": true,
"newcap": true,
"supernew": true,
"noyield": true,
"evil": true,
"node": true,
"boss": true,
"expr": true,
"undef": true,
"maxparams": 5,
"maxdepth": 4,
"globals": {
"window": true,
"suite": true,
"set": true,
"before": true,
"bench": true
}
}

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

View File

@ -72,8 +72,6 @@
"chai": "^2.0.0",
"esvalid": "^1.1.0",
"istanbul": "^0.3.5",
"jshint": "^2.6.0",
"jshint-stylish": "^1.0.0",
"matcha": "^0.6.0",
"mocha": "^2.1.0",
"rimraf": "^2.2.8",