Skip to content

Commit

Permalink
Merge pull request #43 from pdehaan/eslintin
Browse files Browse the repository at this point in the history
Switching to ESLint
  • Loading branch information
phated committed Oct 25, 2015
2 parents 702f59c + 2360108 commit edc9a90
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 46 deletions.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "gulp"
}
19 changes: 0 additions & 19 deletions .jshintrc

This file was deleted.

55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,10 @@
"name": "gulp-cli",
"description": "The streaming build system",
"version": "0.3.0",
"homepage": "http://gulpjs.com",
"repository": "gulpjs/gulp-cli",
"author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
"tags": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline"
],
"files": [
"index.js",
"lib",
"bin",
"completion"
],
"bin": {
"gulp": "bin/gulp.js"
},
"man": "gulp.1",
"dependencies": {
"archy": "^1.0.0",
"chalk": "^1.1.0",
Expand All @@ -39,22 +21,41 @@
"devDependencies": {
"code": "^1.2.1",
"coveralls": "^2.7.0",
"eslint": "^1.7.3",
"eslint-config-gulp": "^2.0.0",
"gulp": ">=3.8.10",
"jscs": "^2.3.5",
"jscs-preset-gulp": "^1.0.0",
"jshint": "^2.5.0",
"jshint-stylish": "^2.0.1",
"lab": "^5.1.0",
"marked-man": "^0.1.3"
},
"scripts": {
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
"lint": "jshint lib index.js --reporter node_modules/jshint-stylish --exclude node_modules && jscs index.js lib bin test",
"test": "npm run lint && lab -cv",
"coveralls": "lab -r lcov | coveralls"
},
"engines": {
"node": ">= 0.9"
},
"license": "MIT"
"files": [
"index.js",
"lib",
"bin",
"completion"
],
"homepage": "http://gulpjs.com",
"license": "MIT",
"man": "gulp.1",
"repository": "gulpjs/gulp-cli",
"scripts": {
"coveralls": "lab -r lcov | coveralls",
"lint": "eslint . && jscs index.js bin/ lib/ test/",
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
"pretest": "npm run lint",
"test": "lab -cv"
},
"tags": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline"
]
}
3 changes: 3 additions & 0 deletions test/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "gulp/test"
}

0 comments on commit edc9a90

Please sign in to comment.