diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-07 11:25:47 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-07 11:26:09 +0200 |
commit | bc4c9cc1d75d591c217d61ab22a107b7f1044c76 (patch) | |
tree | bd308af1530ff45702b3ac548ec59fc6215350ca /client/.stylelintrc.json | |
parent | 52fe9526420b98df78f922ff3680a04ec0f7784e (diff) | |
download | PeerTube-bc4c9cc1d75d591c217d61ab22a107b7f1044c76.tar.gz PeerTube-bc4c9cc1d75d591c217d61ab22a107b7f1044c76.tar.zst PeerTube-bc4c9cc1d75d591c217d61ab22a107b7f1044c76.zip |
Fix mask-image property
Needed by chrome
Diffstat (limited to 'client/.stylelintrc.json')
-rw-r--r-- | client/.stylelintrc.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/.stylelintrc.json b/client/.stylelintrc.json index 25f0b1002..6a322da62 100644 --- a/client/.stylelintrc.json +++ b/client/.stylelintrc.json | |||
@@ -24,6 +24,12 @@ | |||
24 | "rule-empty-line-before": null, | 24 | "rule-empty-line-before": null, |
25 | "selector-max-id": null, | 25 | "selector-max-id": null, |
26 | "scss/at-function-pattern": null, | 26 | "scss/at-function-pattern": null, |
27 | "function-parentheses-space-inside": "never-single-line" | 27 | "function-parentheses-space-inside": "never-single-line", |
28 | "property-no-vendor-prefix": [ | ||
29 | true, | ||
30 | { | ||
31 | "ignoreProperties": [ "mask-image" ] | ||
32 | } | ||
33 | ] | ||
28 | } | 34 | } |
29 | } | 35 | } |