IgnatovDan / stylelint-bem-newbie

1 stars 0 forks source link

Show error if font-weight/line-height value is not in the allowed values list #56

Closed IgnatovDan closed 1 year ago

IgnatovDan commented 1 year ago

For example,

// settings:
font-weight: [400; 600];
line-height: [1.44];
// css
font-weight: 150;
line-height: 1.4;

For 'font-weight' show error when it is used in selectors and for @font-face rules

IgnatovDan commented 1 year ago

It doesn't seem to be useful