SimenB / stylint

Improve your Stylus code with Stylint
https://simenb.github.io/stylint/
GNU General Public License v2.0
348 stars 62 forks source link

Warning on attribut in media query #413

Open MatBdry opened 7 years ago

MatBdry commented 7 years ago

I got a warning when I lint my code for an attribute declaration, when it's in a media query:

@media $large-2 {
    [data-region].slide-in-rtl {
        animation-duration: 0.5s;
    }

    [data-region].slide-out-ltr {
        animation-duration: 0.4s;
    }
}

But this does not trigger a warning (outside the media query):

[data-region].slide-out-ltr {
    animation-duration: 0.25s;
}

Do you have any idea ??

Thanks !