Skip to content

Commit

Permalink
update message for unsupported value replacements to use mixin instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
alehar9320 committed Jan 16, 2020
1 parent 1a2dad0 commit 21aea70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default stylelint.utils.ruleMessages(ruleName, {
unexpectedValue(property, physicalValue, logicalValue) {
return `Unexpected "${physicalValue}" value in "${property}" property. Use "${logicalValue}".`;
},
unexpectedValueMixin(property, physicalValue, logicalValue) {
return `Unexpected "${physicalValue}" value in "${property}" property. Use mixin instead. "${logicalValue}" is an experimental logical.`;
unexpectedValueMixin(property, physicalValue) {
return `Unexpected "${physicalValue}" value in "${property}" property. Use mixin from _direction.scss.`;
}
});

0 comments on commit 21aea70

Please sign in to comment.