stylelint-plugin-ecss
Version:
stylelint plugins for [ECSS](http://ecss.io/)
36 lines (28 loc) • 395 B
Markdown
# comment-check-prefix-browser-hacks
This rule check whether comment contain `HHHack` when you use device/browser hacks.
## Good👍
```scss
.bar {
// HHHack this is hack
color: #fff;
}
```
## Bad👎
```scss
.bar {
// HHhack this is hack
color: #fff;
}
```
```scss
.bar {
// hhhack this is hack
color: #fff;
}
```
```scss
.bar {
// Hhhack this is hack
color: #fff;
}
```