Browse Source

ci: convert json config to yaml

George Cushen 4 năm trước cách đây
mục cha
commit
68c25ddc4a
2 tập tin đã thay đổi với 13 bổ sung19 xóa
  1. 0 19
      wowchemy/.stylelintrc.json
  2. 13 0
      wowchemy/.stylelintrc.yaml

+ 0 - 19
wowchemy/.stylelintrc.json

@@ -1,19 +0,0 @@
-{
-  "plugins": [
-    "stylelint-scss"
-  ],
-  "extends": [
-    "stylelint-config-standard",
-    "stylelint-config-prettier"
-  ],
-  "rules": {
-    "at-rule-no-unknown": null,
-    "scss/at-rule-no-unknown": true,
-    "no-descending-specificity": null,
-    "font-family-no-missing-generic-family-keyword": [ true, {
-      "ignoreFontFamilies": [
-        "Font Awesome 5 Free"
-      ]
-    }]
-  }
-}

+ 13 - 0
wowchemy/.stylelintrc.yaml

@@ -0,0 +1,13 @@
+plugins:
+  - stylelint-scss
+extends:
+  - stylelint-config-standard
+  - stylelint-config-prettier
+rules:
+  at-rule-no-unknown: null
+  scss/at-rule-no-unknown: true
+  no-descending-specificity: null
+  font-family-no-missing-generic-family-keyword:
+    - true
+    - ignoreFontFamilies:
+        - Font Awesome 5 Free