Files
shaka-player/.csslintrc
T
Joey Parrish 22e8c29a0d Use CSS & container attributes to hide controls
This is now based solely on container attributes and CSS, as it used
to be, removing the need for a list of controls to hide in JavaScript.
This also does away with the "shaka-fade-out-on-mouse-out" CSS class.

Change-Id: Ic2f77c5b2f0691023279d9c99cfe3519f4b26cdd
2020-01-14 10:42:36 -08:00

14 lines
472 B
Plaintext

{
"extends": "stylelint-config-standard",
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"declaration-block-single-line-max-declarations": null,
"max-line-length": [ 80, {
ignorePattern: "/^@import\\s+/",
}],
"selector-list-comma-newline-after": "always-multi-line",
"selector-pseudo-element-colon-notation": "single",
"unit-whitelist": ["em", "%", "px", "s", "deg", "vmin", "ms", "vh"]
}
}