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

Commit

Permalink
Internal: Enabled stylelint in the package.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Oct 31, 2019
1 parent 7125eee commit 1b4f5d6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Expand Up @@ -22,7 +22,8 @@
"eslint": "^5.15.3",
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^1.3.1",
"lint-staged": "^7.0.0"
"lint-staged": "^7.0.0",
"stylelint": "^11.1.1"
},
"engines": {
"node": ">=8.0.0",
Expand All @@ -42,11 +43,15 @@
"theme"
],
"scripts": {
"lint": "eslint --quiet '**/*.js'"
"lint": "eslint --quiet '**/*.js'",
"stylelint": "stylelint --quiet 'theme/**/*.css' 'docs/**/*.css'"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
],
"**/*.css": [
"stylelint --quiet"
]
},
"eslintIgnore": [
Expand Down

0 comments on commit 1b4f5d6

Please sign in to comment.