Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge t/ckeditor5/473 into master
Browse files Browse the repository at this point in the history
Internal: Removed gulp dependency for pre-commit linting. See ckeditor/ckeditor5#473.
  • Loading branch information
Reinmar committed Oct 10, 2017
2 parents ffa419a + 01f3888 commit 9117046
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 31 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
# These files will be ignored by Git and by our linting tools:
# gulp lint
# gulp lint-staged

node_modules/
22 changes: 0 additions & 22 deletions gulpfile.js

This file was deleted.

19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-dev-lint": "^3.1.4",
"@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
Expand All @@ -25,9 +24,9 @@
"@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
"del": "^2.2.0",
"eslint-config-ckeditor5": "^1.0.6",
"gulp": "^3.9.1",
"guppy-pre-commit": "^0.4.0",
"lodash-cli": "^4"
"lodash-cli": "^4",
"husky": "^0.14.3",
"lint-staged": "^4.2.3"
},
"engines": {
"node": ">=6.0.0",
Expand All @@ -45,5 +44,15 @@
"lang",
"src",
"theme"
]
],
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [ "src/lib/**" ]
}

0 comments on commit 9117046

Please sign in to comment.