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

False positives for 'no-duplicate-properties' and 'declarations-before-nesting' rules #935

Closed
ChrisMBarr opened this issue Nov 7, 2016 · 2 comments · Fixed by #936
Closed
Labels

Comments

@ChrisMBarr
Copy link

Using sass-lint 1.10.0 (via gulp-sass-lint 1.3.0), both of the follow code blocks report a violation from the no-duplicate-properties rule where I've indicated with a comment. Both of these lines are variable declarations and not even properties, so I have no idea why it's reporting these at all!

Luckily this release now includes rule disable comments, so I'm able to ignore these for now until this issue is resolved.

@mixin make-dashboard-grid-columns-float($columns, $class) {
    $list: '';

    @for $i from 1 to $columns {
        $list: '.col-#{$class}-#{$i}, #{$list}';
    }

    $i: $columns;
    $list: '#{$list}, .col-#{$class}-#{$i}';  // <--- lint error reported on this line

    #{$list} {
        // Inner gutter via padding
        padding-left: ($dashboard-grid-gutter / 2);
        padding-right: ($dashboard-grid-gutter / 2);
    }
}
.alert-tab {
    $subnav-color-alert-base: #921D1D;
    $subnav-color-alert-color: #FFECEC;
    $subnav-color-alert-bg: #B86B6B;
    $subnav-color-alert-bg-hover: #CD9898;
    $subnav-color-alert-bg-hover-gradient-secondary: #B36161;
    $subnav-color-alert-color-hover: #FFF;
    $subnav-color-alert-bg-hover: #FFF;  // <-- lint error reported on this line

    @include gradient-vertical($subnav-color-alert-bg, $subnav-color-alert-base, 30%, 85%);
    color: $subnav-color-alert-color;
    font-weight: bold;
    background-color: $subnav-color-alert-bg;

    &:hover {
        @include gradient-vertical($subnav-color-alert-bg-hover, $subnav-color-alert-bg-hover-gradient-secondary, 30%, 85%);
        color: $subnav-color-alert-color-hover;
        background-color: $subnav-color-alert-bg-hover;
    }

    &.current {
        color: $subnav-color-alert-base;

        &:hover {
            background: $subnav-color-alert-bg-hover; //force this BG color back on to replace the gradient
        }
    }
}
@DanPurdy
Copy link
Member

DanPurdy commented Nov 7, 2016

Hi @ChrisMBarr Yeah, I actually noticed this earlier too, now that I've got the gulp release out of the way, I'll look at getting a hotfix out for a few of these issues that have popped up.

@DanPurdy DanPurdy added the bug label Nov 7, 2016
@ChrisMBarr
Copy link
Author

ChrisMBarr commented Nov 7, 2016

Similarly, I noticed more false positives in this example as well for the declarations-before-nesting rule.

In general, it seems to confuse variables and properties. It seems to treat any text that ends with a : as a property.

@mixin sprite-images($context, $image-path, $vertical-offset, $list) {
    #{$context} {
        background-image: url('#{$image-path}?v5');
    }

    $i: 0;   // <-- violation reported here

    @each $item in $list {
        #{$context}#{$context}_#{$item} {
            background-position: 0 $i;
        }

        $i: $i - $vertical-offset;  // <-- violation reported here
    }
}`

@ChrisMBarr ChrisMBarr changed the title False positives for no-duplicate-properties rule False positives for 'no-duplicate-properties' and 'declarations-before-nesting' rules Nov 7, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants