]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - .dev/.stylelintrc.js
Upgrade front end dependencies
[github/shaarli/Shaarli.git] / .dev / .stylelintrc.js
diff --git a/.dev/.stylelintrc.js b/.dev/.stylelintrc.js
new file mode 100644 (file)
index 0000000..a754e33
--- /dev/null
@@ -0,0 +1,15 @@
+module.exports = {
+  extends: 'stylelint-config-standard',
+  plugins: [
+    "stylelint-scss"
+  ],
+  rules: {
+    "indentation": [2],
+    "number-leading-zero": null,
+    // Replace CSS @ with SASS ones
+    "at-rule-no-unknown": null,
+    "scss/at-rule-no-unknown": true,
+    // not compatible with SASS apparently
+    "no-descending-specificity": null
+  },
+}