Skip to content

Commit

Permalink
Prepare for stylelint 7.8 release (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeddy3 committed Feb 2, 2017
1 parent 25629df commit a7ed33c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Head

- Changed: replaced the deprecated `rule-nested-empty-line-before` and `rule-non-nested-empty-line-before` rules with the `rule-empty-line-before` rule.

# 15.0.1

- Fixed: URLs to stylelint rules within README.
Expand Down
5 changes: 1 addition & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,10 @@ module.exports = {
"number-no-trailing-zeros": true,
"property-case": "lower",
"property-no-unknown": true,
"rule-nested-empty-line-before": [ "always-multi-line", {
"rule-empty-line-before": [ "always-multi-line", {
except: ["first-nested"],
ignore: ["after-comment"],
} ],
"rule-non-nested-empty-line-before": [ "always-multi-line", {
ignore: ["after-comment"],
} ],
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"remark-cli": "^2.0.0",
"remark-preset-lint-consistent": "^1.0.0",
"remark-preset-lint-recommended": "^1.0.0",
"stylelint": "^7.6.0"
"stylelint": "^7.8.0"
},
"peerDependencies": {
"stylelint": "^7.6.0"
"stylelint": "^7.8.0"
},
"scripts": {
"lint:js": "eslint . --ignore-path .gitignore",
Expand Down

0 comments on commit a7ed33c

Please sign in to comment.