Skip to content

Commit

Permalink
Add ignore: "consecutive-duplicates-with-different-values" option for…
Browse files Browse the repository at this point in the history
… declaration-block-no-duplicate-properties (#43)
  • Loading branch information
ntwb authored and jeddy3 committed Sep 20, 2016
1 parent 905db0f commit 1ab75f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# HEAD

- Fixed: `declaration-block-no-duplicate-properties` now uses the `consecutive-duplicates-with-different-values` `ignore` option.

# 13.0.0

- Added: `declaration-block-no-duplicate-properties` rule.
Expand Down
4 changes: 3 additions & 1 deletion index.js
Expand Up @@ -40,7 +40,9 @@ module.exports = {
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-ignored-properties": true,
"declaration-block-no-ignored-properties": [ true, {
ignore: ["consecutive-duplicates-with-different-values"],
} ],
"declaration-block-no-redundant-longhand-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-semicolon-newline-after": "always-multi-line",
Expand Down

0 comments on commit 1ab75f0

Please sign in to comment.