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 d3bcaf8 commit cca8479Copy full SHA for cca8479
src/format.ts
@@ -3,6 +3,7 @@ import { Issue } from 'codeclimate-types';
3
import { createHash } from "node:crypto";
4
5
export default function format (input: string): Issue[] {
6
+ input = input.replace(/\r/, "");
7
const foo: GrammarItem[] = parse(input);
8
9
return foo.map((inputItem) => {
0 commit comments