Shane da Silva
Shane da Silva
Would happily merge a pull request!
If you want to write a linter `ElementSelector` which forbids any references to elements, this would be pretty easy. See [`IdSelector`](https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/id_selector.rb) as an example. Would essentially need to rename `visit_id`...
Would welcome a working pull request with tests!
Hey @arpit9295, you can use [`style: at_least_one_space`](https://github.com/brigade/scss-lint/tree/master/lib/scss_lint/linter#spaceaftervariablecolon) to work around this. If you are requesting a feature to explicitly enforce alignment, happy to accept a pull request!
Hey @ifyoumakeit, this request makes sense to me. It's a quirky behavior of Sass that ultimately makes sense but is initially confusing. Thanks for the suggestion—happy to merge a pull...
`@if` is tricky because of `@else if`/`@else`. I also think that since it deals with control flow the same rules need not necessarily apply. I would certainly be open to...
I think allowing you to name each type of node separately would be sufficient, rather than introducing fancy names for entire types of blocks. So adding a `spaced_blocks` option where...
While this convention is certainly a bit out of the ordinary (I've never seen a codebase that enforced spacing _after_ a block), I am happy to accept a pull request...
Hey @otbpvose, It would be very helpful for you to include some concrete examples so it's clear what behavior you are expecting versus what you are observing. For example, one...
Thanks for clarifying the issue, @otbpvose. The problem with supporting `&` parent selector expansion is that can get particularly gnarly with comma selectors, for example: ``` scss .one, .two, .three...