diff --git a/.jshintignore b/.jshintignore deleted file mode 100644 index 2bf824307c..0000000000 --- a/.jshintignore +++ /dev/null @@ -1 +0,0 @@ -src/babel/transformation/templates diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index e61fe4778e..0000000000 --- a/.jshintrc +++ /dev/null @@ -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 - } -} diff --git a/Makefile b/Makefile index bebfe90fe3..c35663df5a 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/package.json b/package.json index 3f1120f747..e8474ca4cd 100644 --- a/package.json +++ b/package.json @@ -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",