0
0
mirror of https://github.com/jellyfin/jellyfin-web.git synced 2025-04-19 03:36:06 +00:00
Files
jellyfin-web/.stylelintrc.scss.json
Bill Thornton 49fa4e0b65 Merge pull request #2239 from thornbill/disable-browser-hack-sass
Disable browser hack rule for sass files

(cherry picked from commit 86b8b55b1aa754c8e550d5d541797e73011161ab)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
2020-12-30 19:08:01 -05:00

10 lines
201 B
JSON

{
"extends": [ "./.stylelintrc.json" ],
"plugins": [ "stylelint-scss" ],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"plugin/no-browser-hacks": null
}
}