Skip to content

Commit

Permalink
fix: update peerDependencies with stylelint 9.6.x (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jzempel committed Oct 16, 2018
1 parent 34d778d commit 191b8d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,7 +23,7 @@
"test": "yarn lint && yarn format && git diff --quiet"
},
"peerDependencies": {
"stylelint": "^9.4.x",
"stylelint": "^9.6.x",
"stylelint-order": "^1.x"
},
"devDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions rules/stylistic-issues/general.js
Expand Up @@ -17,6 +17,8 @@ module.exports = {
'max-line-length': [80, {
ignorePattern: ['/--zd-.+/']
}],
// Disallow empty first lines
'no-empty-first-line': true,
// Disallow end-of-line whitespace
'no-eol-whitespace': true,
// Disallow missing end-of-source newline
Expand Down

0 comments on commit 191b8d2

Please sign in to comment.