-
Notifications
You must be signed in to change notification settings - Fork 527
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
Newline-related rules giving false positives on Windows for projects with Unix line endings #149
Comments
https://github.com/sasstools/scssparse/blob/homerolled/lib/re.js#L3 may have to do a match on these instead.. |
FYI, after cloning the project and running the tests on Windows, I get 12 test failures. They all appear newline-related. |
Thanks @joshuacc, will definitely look into this a bit further. |
Maybe we need an option to let users set (and enforce) their line ending type?
|
So OS by default but the option to specify? That makes sense to me. |
Actually, this is what I’m thinking: All of our current newline rules; whatever the first found newline is what it should use for the parsing of that rule. If there is a mix, warn on mixed, but have it be whatever the first found one is. Add a rule to enforce a specific type of newline, which defaults to OS On Thursday, September 10, 2015 at 7:37 PM, Dan Purdy wrote:
|
Interesting, I still think the option to specify should be there for those that want to standardise everything from the get go but it would definitely make sense for those who haven't tweaked their config to the max, will also avoid any issues across teams. |
My take on this is that there should be a specific rule for newline characters, but other rules should be character agnostic (even allowing mixed in a single file). That seems more consistent with the small rule philosophy I've seen so far in sass-lint. |
Makes sense, looking at the prevalence of checking for https://github.com/sasstools/sass-lint/search?utf8=%E2%9C%93&q=EOL |
Would you be open to a PR which fixes this problem in the newline agnostic way I mentioned previously? If so, I can throw one together quickly. 😄 |
Hey @joshuacc do you want this issue shut down now or are there still some hangovers that need to be resolved? |
There is still a failing test on Windows with the indentation rule, which seems related to the os.EOL check. However, I haven't seen any actual bugs with that, so maybe track as a separate issue? |
Created a separate issue #180 for the failing test. Closing this one. |
For example, using sass-lint 1.2.0 via gulp-sass on Windows, but using Unix-style LF for EOL:
The documentation seems to indicate that the code above should pass, but it results in this:
When I directly modified the rule to replace
os.EOL
with'\n'
, the rule worked correctly.Unfortunately, the user's OS is not a reliable indicator of the project's line endings. I work on a cross-platform team that has standardized on Unix line endings for all code, and I imagine that there are lots of others out there.
The text was updated successfully, but these errors were encountered: