-
Notifications
You must be signed in to change notification settings - Fork 51
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
grid-template-columns falsely identified as "multicolumn" feature #100
Comments
Stumbled upon the same problem with stylelint just about now. From what you write it seems that the string matcher should match full properties instead of just looking for words. so it should check for |
When it will be fixed? |
If you find adding grid-template: auto / 1fr 272px; instead of grid-template-columns: 1fr 272px; and grid-template: 1fr 272px / auto; for rows. |
I would happily accept a PR if you have some time to work on it? |
Fixed in #159
|
I wrote a style that uses
grid-template-columns
, but it gets marked as the CSS "multicolumn" feature:Unexpected browser feature "multicolumn" is only partially supported by Firefox 60,62,63
(output is from https://github.com/ismay/stylelint-no-unsupported-browser-features which uses this library under the hood).Reading the How it works section, I read that a rather simple string matching is done using the data/features.js file, and looking through that file I can see that the word
columns
is associated with the the multicolumn feature: https://github.com/anandthakker/doiuse/blob/master/data/features.js#L80-L82I'm not sure what your plans are for being able to distinguish between these kinds of features, but I thought you should know that it's having this effect 🙂
The text was updated successfully, but these errors were encountered: