ThisIsManta / stylus-supremacy

A Node.js script that helps formatting Stylus files.
https://thisismanta.github.io/stylus-supremacy
MIT License
88 stars 9 forks source link

parentheses being set to variable in mixin #87

Open aaarichter opened 3 years ago

aaarichter commented 3 years ago

Hi, sorry if this has been asked before but I can't seem to find what option is causing this transform:

original stylus:

focus-outline($focusColor = $color-blue-600)
  0 0 3px 1px $focusColor

transformed to

focus-outline($focusColor = $color-blue-600)
  0 0 3px 1px {$focusColor}

Screenshot 2021-02-16 at 10 57 29

The {} around the variable are causing the stylus compiler to throw expected ":", got "}"