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

keep quotes for hash keys for negative values #80

Closed StephanHoyer closed 3 years ago

StephanHoyer commented 3 years ago
hash = {
 '-1': foo
}

becomes

hash = {
 -1: foo
}

which is no valid stylus

ThisIsManta commented 3 years ago

Fixed at v2.15.0. Thanks for the PR!