Skip to content

Commit 63d469c

Browse files
committed
Add stylelint rules
1 parent 0a540c8 commit 63d469c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

gulpfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ gulp.task('css', function () {
1818
cssnano(),
1919
stylelint({
2020
"rules": {
21-
"string-quotes": [2,"double"]
21+
"string-quotes": [2, "double"],
22+
"block-no-empty": 2,
23+
"color-hex-case": [2, "lower"],
24+
"selector-no-id": 2
2225
}
2326
}),
2427
reporter({

0 commit comments

Comments
 (0)