Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2018-07-06 11:08:56 +0300
committersualko <klaus@jsxc.org>2018-07-06 11:08:56 +0300
commit1906c6714444537a8a5d0d102974efbd798fecb3 (patch)
treea5dee5f7c1b01b47c10b9115c56a0892d4d5de94 /.stylelintrc
parent1caccf83d39f8999ede4fcade8d6fa7c46341fce (diff)
adapt scss format to sass guidelines
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/.stylelintrc b/.stylelintrc
new file mode 100644
index 00000000..dcef97c2
--- /dev/null
+++ b/.stylelintrc
@@ -0,0 +1,12 @@
+{
+ "extends": "stylelint-config-sass-guidelines",
+ "rules": {
+ "string-quotes": "double",
+ "selector-max-id": 1,
+ "max-nesting-depth": 5,
+ "selector-max-compound-selectors": 5,
+ "selector-no-qualifying-type": [true, {
+ "ignore": ["attribute", "class", "id"]
+ }]
+ }
+}