summaryrefslogtreecommitdiffstats
path: root/.stylelintrc.json
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-05 14:14:32 -0400
committerDavid Robillard <d@drobilla.net>2022-07-05 14:44:23 -0400
commit675d76c5718ddd84ad9e9ce263bef445bcc7572e (patch)
treea252a8fb0fe6279cd9e30a2f3e2b890d3877e7b6 /.stylelintrc.json
parent2d116b9ee7495ea4d11742478c4d454b31e586e3 (diff)
downloadlv2site-675d76c5718ddd84ad9e9ce263bef445bcc7572e.tar.xz
Fix stylelint warnings
Diffstat (limited to '.stylelintrc.json')
-rw-r--r--.stylelintrc.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json
new file mode 100644
index 0000000..1a54384
--- /dev/null
+++ b/.stylelintrc.json
@@ -0,0 +1,9 @@
+{
+ "extends": "/usr/lib/node_modules/stylelint-config-standard",
+ "rules": {
+ "color-hex-case": "upper",
+ "no-descending-specificity": false,
+ "selector-list-comma-newline-after": "always-multi-line",
+ "shorthand-property-no-redundant-values": true
+ }
+}