Skip to content

Commit 7381356

Browse files
committed
fix eslint
1 parent af26a06 commit 7381356

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/style-rewriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var addId = postcss.plugin('add-id', function (opts) {
3030
var trim = postcss.plugin('trim', function (opts) {
3131
return function (css) {
3232
css.walk(function (node) {
33-
if (node.type === 'rule' || node.type == 'atrule') {
33+
if (node.type === 'rule' || node.type === 'atrule') {
3434
node.raws.before = node.raws.after = '\n'
3535
}
3636
})

0 commit comments

Comments
 (0)