canvas-lms/.stylelintrc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
401 B
Plaintext
Raw Normal View History

{
"ignoreFiles": [
"app/stylesheets/vendor/**",
"public/**",
],
"rules": {
"color-no-invalid-hex": true,
"shorthand-property-no-redundant-values": true,
"property-disallowed-list": [ "/left/", "/right/" ],
"declaration-property-value-disallowed-list": {
"text-align": ["left", "right"],
"float": ["left", "right"],
"clear": ["left", "right"]
}
}
}