We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
g
1 parent cca8479 commit d8eb27bCopy full SHA for d8eb27b
src/format.ts
@@ -3,7 +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/, "");
+ input = input.replace(/\r/g, "");
7
const foo: GrammarItem[] = parse(input);
8
9
return foo.map((inputItem) => {
0 commit comments