Say goodbye to jscs.

This commit is contained in:
Michał Lipiński
2017-03-12 19:58:58 +01:00
parent 3e03cbf2b8
commit 98969648e9
3 changed files with 5 additions and 103 deletions

View File

@@ -19,10 +19,10 @@
"doc:sitehtml": "optional-dev-dependency marky-markdown@^9.0.1 && npm run doc:site && node lib/main/build-site",
"pretest": "npm run build",
"style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test",
"style:fp": "jscs fp/*.js lib/**/*.js",
"style:main": "jscs lodash.js",
"style:perf": "jscs perf/*.js perf/**/*.js",
"style:test": "jscs test/*.js test/**/*.js",
"style:fp": "eslint fp/*.js lib/**/*.js",
"style:main": "eslint lodash.js",
"style:perf": "eslint perf/*.js perf/**/*.js",
"style:test": "eslint test/*.js test/**/*.js",
"test": "npm run test:main && npm run test:fp",
"test:doc": "markdown-doctest doc/*.md",
"test:fp": "node test/test-fp",
@@ -46,7 +46,6 @@
"glob": "^7.1.1",
"istanbul": "0.4.5",
"jquery": "^3.1.1",
"jscs": "^3.0.7",
"lodash": "4.17.3",
"lodash-doc-globals": "^0.1.1",
"markdown-doctest": "^0.9.1",