You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
the whitespace rule accepts up to 7 flags. is it possible to express the following desire?
one of the flags is "true," as in i want whitespace in that case
another flag is "false," as in i want to validate that there is no whitespace in that case
(i suspect not...)
stylelint makes this really easy by defining each case as its own rule (often as two -space-before and -space-after rules, see function-comma-* here). perhaps its worth considering breaking this rule into many smaller ones for each piece of the puzzle:
// require whitespace after"whitespace-branch": [true,"after"],// require no whitespace (but rule is enabled)"whitespace-type": [true],
The text was updated successfully, but these errors were encountered:
the
whitespace
rule accepts up to 7 flags. is it possible to express the following desire?(i suspect not...)
stylelint makes this really easy by defining each case as its own rule (often as two
-space-before
and-space-after
rules, seefunction-comma-*
here). perhaps its worth considering breaking this rule into many smaller ones for each piece of the puzzle:The text was updated successfully, but these errors were encountered: