Appearance
require or disallow whitespace after the double-slash of single-line comments.
"stylelint-stylus/standard"
"always"
This rule require or disallow whitespace after the double-slash of single-line comments.
{ "stylus/single-line-comment-double-slash-space-after": ["always" | "never"] }
"never"
/* stylelint rules config: {"stylus/single-line-comment-double-slash-space-after": "always"} */ // ✓ GOOD // OK // OK // ✗ BAD //NG
/* stylelint rules config: {"stylus/single-line-comment-double-slash-space-after": "never"} */ //✓ GOOD //OK // ✗ BAD // NG // NG
stylus/single-line-comment-double-slash-space-after
"stylelint-stylus/standard"
. (options:"always"
)📖 Rule Details
This rule require or disallow whitespace after the double-slash of single-line comments.
🔧 Options
"always"
... Requires whitespace."never"
... Disallows whitespace."always"
"never"
👫 Related rules
📚 Further reading
🔍 Implementation