Shopify / theme-check

The Ultimate Shopify Theme Linter
Other
337 stars 95 forks source link

Handle rogue carriage returns #547

Closed charlespwd closed 2 years ago

charlespwd commented 2 years ago

Turns out that everything blows up when we have \r without a followup \n in a file. Nokogiri will handle it and give you a new line, but we didn't and so we ended up with nokogiri telling you something was on line 61 and us not having the newline character and the thing being on line 60.

Fixes #528 Fixes #545