We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca96d7f commit 52e6585Copy full SHA for 52e6585
linter.py
@@ -57,7 +57,7 @@ def find_errors(self, output):
57
# only parse the last line, which is hopefully the actual eslint
58
# output.
59
# https://github.com/SublimeLinter/SublimeLinter-eslint/issues/251
60
- last_line = output.rstrip().split(os.linesep)[-1]
+ last_line = output.rstrip().split('\n')[-1]
61
content = json.loads(last_line)
62
except ValueError:
63
logger.error(
0 commit comments