diff options
Diffstat (limited to '.stylelintrc.json')
| -rw-r--r-- | .stylelintrc.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..f571002 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,15 @@ +{ + "rules": { + "block-no-empty": true, + "color-no-invalid-hex": true, + "function-url-quotes": "always", + "no-duplicate-selectors": true, + "no-empty-source": true, + "no-invalid-double-slash-comments": true, + "property-no-unknown": true, + "selector-pseudo-class-no-unknown": true, + "selector-pseudo-element-no-unknown": true, + "string-no-newline": true, + "unit-no-unknown": true + } +}
\ No newline at end of file |
