-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
Version of stylelint-use-logical
1.1.0
Config
module.exports = {
plugins: [
'stylelint-use-logical',
],
rules: {
'csstools/use-logical': ['always', {
except: [
'top',
'left',
],
}],
},
}
Code
/* index.css */
.selector {
position: absolute;
top: -4px;
left: 0;
}
Error
index.css
11:2 ✖ Unexpected top property. Use inset-start. csstools/use-logical
Expected
No error because top
property is added to the expect
array.
jens-duttke and vmohir
Metadata
Metadata
Assignees
Labels
No labels