Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

empty-line-between-blocks sass issue #447

Closed
DanPurdy opened this issue Dec 10, 2015 · 5 comments
Closed

empty-line-between-blocks sass issue #447

DanPurdy opened this issue Dec 10, 2015 · 5 comments

Comments

@DanPurdy
Copy link
Member

Another .sass format issue this time with the empty-line-between-blocks rule. Again as a result of looking into #437

/Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:67
    if (previous.is('space') || previous.is('declarationDelimiter')) {
                 ^

TypeError: previous.is is not a function
    at findNearestReturnSass (/Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:67:18)
    at findNearestReturnSass (/Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:82:14)
    at /Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:175:27
    at Node.forEach (/Users/danpurdy/workspace/sass-lint/node_modules/gonzales-pe/lib/node/basic-node.js:1:2053)
    at /Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:155:16
    at RootNode.traverseByType (/Users/danpurdy/workspace/sass-lint/node_modules/gonzales-pe/lib/node/root-node.js:1:1739)
    at Object.module.exports.detect (/Users/danpurdy/workspace/sass-lint/lib/rules/empty-line-between-blocks.js:118:9)
    at /Users/danpurdy/workspace/sass-lint/index.js:44:27
    at Array.forEach (native)
    at Function.sassLint.lintText (/Users/danpurdy/workspace/sass-lint/index.js:43:11)

To recreate run the rule against the mixins-before-declarations .sass test file

reported in sass-lint: 1.3.3

@DanPurdy DanPurdy added the bug label Dec 10, 2015
@Snugug Snugug added this to the 1.5.1 - Latest Gonzales milestone Feb 7, 2016
@bgriffith
Copy link
Member

I don't think this is still an issue when using the latest gonzales.

@indiesquidge
Copy link

indiesquidge commented Apr 15, 2016

@DanPurdy @bgriffith I am also getting this issue (sass-lint: 1.5.1)

@DanPurdy
Copy link
Member Author

The example above is fixed in sass-lint 1.6.0
@indiesquidge

@sawyerh
Copy link

sawyerh commented May 23, 2016

I just ran into this on sass-lint 1.7.0. Seemed to fail after the include here:

.foo
  @include clearfix
  .bar
    width: 32%

The clearfix mixin looks like:

@mixin clearfix
  zoom: 1

  &:before, &:after
    content: ""
    display: table

  &:after
    clear: both

Changing to this (space after @include) fixed the error:

.foo
  @include clearfix

  .bar
    width: 32%

@DanPurdy
Copy link
Member Author

Hey @sawyerh Could you make a new issue with this please, it's easier for us to track and fix these after the issue is closed. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants