-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Fix lintDirtyModulesOnly when matching path on Windows #124
Conversation
2 similar comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@MQuy thank you for your contribution! This looks like a great change. Ignore the bitHound failures, I was just trying out that service, I will remove it from the CI checks.
Unfortunately I'm not sure why node v9 is failing, I'll try to investigate.
@JaKXz, it is quite strange that it causes an error. The only major change is related to micromatch, but this library is used by stylelint ..., it shouldn't be a problem 🤔 |
The issue is with I don't have the cycles atm to look into that package, but please feel free to do the deep dive :) |
|
* Add micromatch * Use micromatch to check changes * Remove matchbase in micromatch
I run with
lintDirtyModulesOnly
option on Window, it doesn't work due to minimatch's problem on Window. After changing minimatch into micromatch it works fine in my case, and performance is a bit better.