IgnatovDan / stylelint-bem-newbie

1 stars 0 forks source link

Show an error if 'position:absolute' is used with one positioning aspect #23

Closed IgnatovDan closed 1 year ago

IgnatovDan commented 1 year ago

Incorrect:

{ position: absolute; bottom: 0; }
{ position: absolute; top: 0; }

Correct:

{ position: absolute; bottom: 0; top: 0;}
{ position: absolute; right: 0; top: 0;}