Skip to content

Commit

Permalink
feat(betterer ✨): only show the first new issue in a file (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
phenomnomnominal authored Aug 18, 2021
1 parent db9074a commit 63d5da9
Show file tree
Hide file tree
Showing 13 changed files with 66 additions and 83 deletions.
24 changes: 14 additions & 10 deletions packages/betterer/src/test/file-test/differ.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import {
BettererFileBase
} from './types';

const FORMATTER = Intl.NumberFormat();

export function differ(expected: BettererFileTestResult, result: BettererFileTestResult): BettererFileTestDiff {
const diff: BettererFilesDiff = {};
const expectedΩ = expected as BettererFileTestResultΩ;
Expand Down Expand Up @@ -160,16 +162,18 @@ export function differ(expected: BettererFileTestResult, result: BettererFileTes
logs.push({ warn: `${existing.length} existing ${getIssues(existing.length)} in "${filePath}".` });
}
const newIssues = diff[filePath].new || [];
if (newIssues.length) {
const { length } = newIssues;
logs.push({ error: `${length} new ${getIssues(length)} in "${filePath}":` });

newIssues.map((issue) => {
const fileΩ = resultΩ.getFile(filePath) as BettererFileΩ;
const { fileText } = fileΩ;
const [line, column, length, message] = issue;
logs.push({ code: { message, filePath, fileText, line, column, length } });
});
const nIssues = newIssues.length;
if (nIssues) {
logs.push({ error: `New ${getIssues(nIssues)} in "${filePath}"!` });
if (nIssues > 1) {
logs.push({ error: `Showing first of ${FORMATTER.format(nIssues)} new issues:` });
}

const [firstIssue] = newIssues;
const fileΩ = resultΩ.getFile(filePath) as BettererFileΩ;
const { fileText } = fileΩ;
const [line, column, length, message] = firstIssue;
logs.push({ code: { message, filePath, fileText, line, column, length } });
}
});

Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/betterer-cache.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\"!
・ <project>/fixtures/test-betterer-cache/src/index.ts
・ 1 | // HACK:
Expand All @@ -235,7 +235,7 @@ Error: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\"!
・ <project>/fixtures/test-betterer-cache/src/index.ts
・ 1 | // HACK:
Expand All @@ -256,7 +256,7 @@ Error: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-cache/src/index.ts\\"!
・ <project>/fixtures/test-betterer-cache/src/index.ts
・ 1 | // HACK:
Expand Down
12 changes: 6 additions & 6 deletions test/__snapshots__/betterer-eslint.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 eslint enable new rule: \\"eslint enable new rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint/src/index.ts
・ 1 | debugger;
Expand All @@ -297,7 +297,7 @@ Error: \\"eslint enable new rule\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 eslint enable new rule: \\"eslint enable new rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint/src/index.ts
・ 1 | debugger;
Expand All @@ -318,7 +318,7 @@ Error: \\"eslint enable new rule\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 eslint enable new rule: \\"eslint enable new rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint/src/index.ts
・ 1 | debugger;
Expand Down Expand Up @@ -663,7 +663,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 eslint enable no-debugger rule: \\"eslint enable no-debugger rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint-complex/src/index.ts
・ 1 | debugger;
Expand All @@ -684,7 +684,7 @@ Error: \\"eslint enable no-debugger rule\\" got worse. (1 new issue, 2 total)
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 eslint enable no-debugger rule: \\"eslint enable no-debugger rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint-complex/src/index.ts
・ 1 | debugger;
Expand All @@ -705,7 +705,7 @@ Error: \\"eslint enable no-debugger rule\\" got worse. (1 new issue, 2 total)
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 eslint enable no-debugger rule: \\"eslint enable no-debugger rule\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-eslint-complex/src/index.ts\\"!
・ <project>/fixtures/test-betterer-eslint-complex/src/index.ts
・ 1 | debugger;
Expand Down
18 changes: 9 additions & 9 deletions test/__snapshots__/betterer-file-test.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 file test custom goal: \\"file test custom goal\\" got worse. (1 new issue, 3 total) 😔
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\"!
・ <project>/fixtures/test-betterer-file-test-goal/src/index.ts
・ 1 | debugger;
Expand All @@ -366,7 +366,7 @@ Error: \\"file test custom goal\\" got worse. (1 new issue, 3 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 file test custom goal: \\"file test custom goal\\" got worse. (1 new issue, 3 total) 😔
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\"!
・ <project>/fixtures/test-betterer-file-test-goal/src/index.ts
・ 1 | debugger;
Expand All @@ -388,7 +388,7 @@ Error: \\"file test custom goal\\" got worse. (1 new issue, 3 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 file test custom goal: \\"file test custom goal\\" got worse. (1 new issue, 3 total) 😔
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-goal/src/index.ts\\"!
・ <project>/fixtures/test-betterer-file-test-goal/src/index.ts
・ 1 | debugger;
Expand Down Expand Up @@ -778,7 +778,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts
・ 1 | debugger;
Expand All @@ -798,7 +798,7 @@ Array [
🎉 Betterer (0ms): 1 test done!
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts
・ 1 | debugger;
Expand All @@ -818,7 +818,7 @@ Array [
🎉 Betterer (0ms): 1 test done!
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file-absolute/src/c.ts
・ 1 | debugger;
Expand Down Expand Up @@ -977,7 +977,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts
・ 1 | debugger;
Expand All @@ -997,7 +997,7 @@ Array [
🎉 Betterer (0ms): 1 test done!
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts
・ 1 | debugger;
Expand All @@ -1017,7 +1017,7 @@ Array [
🎉 Betterer (0ms): 1 test done!
✅ file test custom goal: \\"file test custom goal\\" got force updated. (1 new issue, 9 total) 🆙
・ 2 existing issues in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\":
New issue in \\"<project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts\\"!
・ <project>/fixtures/test-betterer-file-test-sort-single-file/src/c.ts
・ 1 | debugger;
Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/betterer-regexp.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\"!
・ <project>/fixtures/test-betterer-regexp/src/index.ts
・ 1 | // HACK:
Expand All @@ -215,7 +215,7 @@ Error: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\"!
・ <project>/fixtures/test-betterer-regexp/src/index.ts
・ 1 | // HACK:
Expand All @@ -236,7 +236,7 @@ Error: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 regexp no hack comments: \\"regexp no hack comments\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-regexp/src/index.ts\\"!
・ <project>/fixtures/test-betterer-regexp/src/index.ts
・ 1 | // HACK:
Expand Down
33 changes: 6 additions & 27 deletions test/__snapshots__/betterer-stylelint.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 stylelint enable new rule: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
・ 2 existing issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\".
・ 2 new issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\":
・ New issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\"!
・ Showing first of 2 new issues:
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 12 | b & {}
Expand All @@ -141,14 +142,6 @@ Array [
・ 16 |
・ 17 | .foo {
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 16 |
・ 17 | .foo {
> 18 | width: 666borks;
| ^ Unexpected unknown unit \\"borks\\" (unit-no-unknown)
19 | }
Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
Expand All @@ -163,7 +156,8 @@ Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 stylelint enable new rule: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
2 existing issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\".
・ 2 new issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\":
New issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\"!
Showing first of 2 new issues:
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 12 | b & {}
Expand All @@ -174,14 +168,6 @@ Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
・ 16 |
・ 17 | .foo {
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 16 |
・ 17 | .foo {
> 18 | width: 666borks;
| ^ Unexpected unknown unit \\"borks\\" (unit-no-unknown)
19 | }
Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
Expand All @@ -196,7 +182,8 @@ Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 stylelint enable new rule: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
2 existing issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\".
・ 2 new issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\":
New issues in \\"<project>/fixtures/test-betterer-stylelint/src/styles.scss\\"!
Showing first of 2 new issues:
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 12 | b & {}
Expand All @@ -207,14 +194,6 @@ Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
・ 16 |
・ 17 | .foo {
・ <project>/fixtures/test-betterer-stylelint/src/styles.scss
・ 16 |
・ 17 | .foo {
> 18 | width: 666borks;
| ^ Unexpected unknown unit \\"borks\\" (unit-no-unknown)
19 | }
Error: \\"stylelint enable new rule\\" got worse. (2 new issues, 4 total) 😔
Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/betterer-tsquery.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 tsquery no raw console.log: \\"tsquery no raw console.log\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\"!
・ <project>/fixtures/test-betterer-tsquery/src/index.ts
・ 1 | console.log('foo');
Expand All @@ -215,7 +215,7 @@ Error: \\"tsquery no raw console.log\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 tsquery no raw console.log: \\"tsquery no raw console.log\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\"!
・ <project>/fixtures/test-betterer-tsquery/src/index.ts
・ 1 | console.log('foo');
Expand All @@ -236,7 +236,7 @@ Error: \\"tsquery no raw console.log\\" got worse. (1 new issue, 2 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 tsquery no raw console.log: \\"tsquery no raw console.log\\" got worse. (1 new issue, 2 total) 😔
・ 1 existing issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-tsquery/src/index.ts\\"!
・ <project>/fixtures/test-betterer-tsquery/src/index.ts
・ 1 | console.log('foo');
Expand Down
6 changes: 3 additions & 3 deletions test/__snapshots__/betterer-typescript-strict.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Array [
🌟 Betterer (0ms): 1 test running...
🔥 typescript use strict mode: \\"typescript use strict mode\\" got worse. (1 new issue, 7 total) 😔
・ 6 existing issues in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\"!
・ <project>/fixtures/test-betterer-typescript-strict/src/index.ts
・ 32 | const a = 'a';
Expand All @@ -221,7 +221,7 @@ Error: \\"typescript use strict mode\\" got worse. (1 new issue, 7 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 typescript use strict mode: \\"typescript use strict mode\\" got worse. (1 new issue, 7 total) 😔
・ 6 existing issues in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\"!
・ <project>/fixtures/test-betterer-typescript-strict/src/index.ts
・ 32 | const a = 'a';
Expand All @@ -243,7 +243,7 @@ Error: \\"typescript use strict mode\\" got worse. (1 new issue, 7 total) 😔
💥 Betterer (0ms): 1 test done! 1 test errored!
🔥 typescript use strict mode: \\"typescript use strict mode\\" got worse. (1 new issue, 7 total) 😔
・ 6 existing issues in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\".
1 new issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\":
New issue in \\"<project>/fixtures/test-betterer-typescript-strict/src/index.ts\\"!
・ <project>/fixtures/test-betterer-typescript-strict/src/index.ts
・ 32 | const a = 'a';
Expand Down
Loading

0 comments on commit 63d5da9

Please sign in to comment.