Skip to content

Commit

Permalink
fix(stylelint-config): ignore cursor, resize and rem unsupported, war…
Browse files Browse the repository at this point in the history
…ning by default
  • Loading branch information
JounQin committed Nov 5, 2019
1 parent e5184f4 commit 4d05ec5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/stylelint-config/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ module.exports = {
rules: Object.assign(
{
'plugin/no-low-performance-animation-properties': true,
'plugin/no-unsupported-browser-features': true,
'plugin/no-unsupported-browser-features': [
true,
{
ignore: ['css3-cursors', 'css-resize', 'rem'],
severity: 'warning',
},
],
'selector-pseudo-element-colon-notation': 'single',
},
(isAngularAvailable || isVueAvailable) && {
Expand Down

0 comments on commit 4d05ec5

Please sign in to comment.