Shane da Silva
Shane da Silva
We haven't heard back from @mdiebolt about merging his work into the main project. If you'd like to see this, you can nudge him for us. :wink:
Agreed that we should have all linters disabled by default for the 1.0.0 release. Until then, any new linters should be automatically disabled going forward.
Thanks for the report, @saneef. As @srawlins points out this is actually quite difficult to do since the Sass parser doesn't give us any information about where the closing brace...
Hey @kristerkari, We explicitly ignore vendor prefixes because it seems like overkill to specify their exact order. Being able to just write `animation-delay` in your order list, and automatically ordering...
Thanks for clarifying, @kristerkari. Happy to accept a pull request that implements this feature.
I've thought about this as well, and would be open to accepting a pull request. `scss-lint` should be relatively straightforward to parallelize. I would like the flag name to be...
I had a quick poke at trying to parallelize using the `parallel` gem, which forks into separate processes under the hood, getting past MRI's GIL which limits parallelism via threads...
Sounds reasonable to me!
Hey @ptarjan, I think this gets complicated when you start having comma selectors, and imposing a particular ordering could mess with specificity. See the original discussion in #112 for more...
Ah, I misunderstood. Within comma selectors I order based on the expected order of the elements within the document (which isn't something you could lint by just inspecting the SCSS...