]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update stylelint config to add missing properties (#25572)
authorin-in <in-in@users.noreply.github.com>
Sun, 11 Feb 2018 23:16:22 +0000 (02:16 +0300)
committerMark Otto <markd.otto@gmail.com>
Sun, 11 Feb 2018 23:16:22 +0000 (15:16 -0800)
* add missing properties

list of new properties:
align-content
animation-fill-mode
appearance
column-count
column-fill
column-gap
column-rule
column-rule-color
column-rule-style
column-rule-width
column-span
column-width
columns
direction
fill
flex-shrink
orphans
page-break-after
page-break-before
page-break-inside
perspective
src
stroke
unicode-bidi
widows

* fix invalid JSON config

add curly brackets

* Update .stylelintrc

.stylelintrc

index e53251258f4c71a592ee9bf4679fc123a410fc96..c9d67250e8914e87aecf7610b5edfe44981a9b9e 100644 (file)
@@ -4,9 +4,9 @@
     "stylelint-order"
   ],
   "rules": {
-    "at-rule-empty-line-before": [null,
+    "at-rule-empty-line-before": [null, {
       "except": ["first-nested"]
-    ],
+    }],
     "at-rule-name-space-after": "always",
     "at-rule-no-vendor-prefix": true,
     "at-rule-semicolon-space-before": "never",
       "flex-direction",
       "flex-wrap",
       "flex-flow",
+      "flex-shrink",
       "flex-grow",
       "flex-order",
       "flex-pack",
+      "align-content",
       "align-items",
       "align-self",
       "justify-content",
       "-ms-overflow-x",
       "-ms-overflow-y",
       "-ms-overflow-style",
+      "columns",
+      "column-count",
+      "column-fill",
+      "column-gap",
+      "column-rule",
+      "column-rule-width",
+      "column-rule-style",
+      "column-rule-color",
+      "column-span",
+      "column-width",
+      "orphans",
+      "widows",
       "clip",
       "clear",
       "font",
       "font-emphasize-position",
       "font-emphasize-style",
       "font-smooth",
+      "src",
       "hyphens",
       "line-height",
       "color",
       "tab-size",
       "white-space",
       "vertical-align",
+      "direction",
+      "unicode-bidi",
       "list-style",
       "list-style-position",
       "list-style-type",
       "box-shadow",
       "opacity",
       "-ms-interpolation-mode",
+      "page-break-after",
+      "page-break-before",
+      "page-break-inside",
       "transition",
       "transition-delay",
       "transition-timing-function",
       "transition-property",
       "transform",
       "transform-origin",
+      "perspective",
+      "appearance",
       "animation",
       "animation-name",
       "animation-duration",
       "animation-timing-function",
       "animation-delay",
       "animation-iteration-count",
-      "animation-direction"
+      "animation-direction",
+      "animation-fill-mode",
+      "fill",
+      "stroke"
     ],
     "property-no-vendor-prefix": true,
     "rule-empty-line-before": null,