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 e4ee8bb + af828e2 commit d3b2355
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 30 deletions.
4 changes: 0 additions & 4 deletions .gitignore
@@ -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.

17 changes: 13 additions & 4 deletions package.json
Expand Up @@ -12,7 +12,6 @@
"@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-lint": "^3.1.4",
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
Expand All @@ -22,8 +21,8 @@
"@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1",
"eslint-config-ckeditor5": "^1.0.6",
"gulp": "^3.9.1",
"guppy-pre-commit": "^0.4.0"
"husky": "^0.14.3",
"lint-staged": "^4.2.3"
},
"engines": {
"node": ">=6.0.0",
Expand All @@ -41,5 +40,15 @@
"lang",
"src",
"theme"
]
],
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [ "src/lib/**" ]
}

0 comments on commit d3b2355

Please sign in to comment.