Skip to content

Commit

Permalink
fix: Deprecated no-missing-eof-newline rule. Use the new `no-missin…
Browse files Browse the repository at this point in the history
…g-end-of-source-newline` rule instead. (#84)
  • Loading branch information
ntwb committed May 31, 2020
1 parent 2a8cb6d commit 1c5d175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/stylelint-config-wordpress/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Added: `selector-attribute-quotes` rule.
* Added: `font-weight-notation` rule.
* Added: `max-line-length` rule.
* Deprecated `no-missing-eof-newline` rule. Use the new `no-missing-end-of-source-newline` rule instead.

# 8.0.0

Expand Down
2 changes: 1 addition & 1 deletion packages/stylelint-config-wordpress/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = {
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"no-missing-eof-newline": true,
"no-missing-end-of-source-newline": true,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"property-case": "lower",
Expand Down

0 comments on commit 1c5d175

Please sign in to comment.