Last active
November 5, 2018 13:09
-
-
Save vnys/e29c9094cf0c48d7f4849bff17c29448 to your computer and use it in GitHub Desktop.
stylelint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
rules: | |
at-rule-no-unknown: true | |
block-no-empty: true | |
color-no-invalid-hex: true | |
comment-no-empty: true | |
declaration-block-no-duplicate-properties: | |
- true | |
- ignore: | |
- consecutive-duplicates-with-different-values | |
declaration-block-no-shorthand-property-overrides: true | |
font-family-no-duplicate-names: true | |
font-family-no-missing-generic-family-keyword: true | |
function-calc-no-unspaced-operator: true | |
function-linear-gradient-no-nonstandard-direction: true | |
keyframe-declaration-no-important: true | |
media-feature-name-no-unknown: true | |
no-descending-specificity: true | |
no-duplicate-at-import-rules: true | |
no-duplicate-selectors: true | |
no-empty-source: true | |
no-extra-semicolons: true | |
no-invalid-double-slash-comments: true | |
property-no-unknown: true | |
selector-pseudo-class-no-unknown: true | |
selector-pseudo-element-no-unknown: true | |
selector-type-no-unknown: true | |
string-no-newline: true | |
unit-no-unknown: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
rules: | |
value-no-vendor-prefix: true | |
property-no-vendor-prefix: true | |
no-empty-source: | |
no-missing-end-of-source-newline: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment