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

Property interpolation-mode appears to be spelled incorrectly #951

Closed
ncoden opened this issue Nov 14, 2016 · 1 comment · Fixed by #1106
Closed

Property interpolation-mode appears to be spelled incorrectly #951

ncoden opened this issue Nov 14, 2016 · 1 comment · Fixed by #1106
Labels

Comments

@ncoden
Copy link
Contributor

ncoden commented Nov 14, 2016

I am using gulp-sass-lint v1.3.2 with sass-lint v1.10.2.

For the following code:

  img {
    // Get rid of gap under images by making them display: inline-block; by default
    display: inline-block;
    vertical-align: middle;

    // Grid defaults to get images and embeds to work properly
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
  }

(from foundation-sites / _global.scss)

The following warning is throw:

163:5   warning  Property `interpolation-mode` appears to be spelled incorrectly  no-misspelled-properties

The sass-lint config is :

...
  no-misspelled-properties:
    - 1
    - extra-properties: []
...

(from .sass-lint.yml)

I expect this warning to not be thrown. -ms-interpolation-mode is an non-standard property for IE<=8 (see https://developer.mozilla.org/fr/docs/Web/CSS/Image-rendering)

Edit: I have the same error for -webkit-overflow-scrolling.

@DanPurdy
Copy link
Member

This is a bug that's actually being worked on as we speak by @bgriffith

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