Skip to content

Commit ab4c4f7

Browse files
committed
fix(plugin-typescript): rename groups
1 parent d8d7395 commit ab4c4f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/plugin-typescript/src/lib/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const AUDITS: (Audit & { slug: AuditSlug })[] = Object.values(
3737
*/
3838
export const GROUPS: Group[] = [
3939
{
40-
slug: 'problems-group',
40+
slug: 'problems',
4141
title: 'Problems',
4242
description:
4343
'Syntax, semantic, and internal compiler errors are critical for identifying and preventing bugs.',
@@ -54,7 +54,7 @@ export const GROUPS: Group[] = [
5454
})),
5555
},
5656
{
57-
slug: 'ts-configuration-group',
57+
slug: 'ts-configuration',
5858
title: 'Configuration',
5959
description:
6060
'TypeScript configuration and options errors ensure correct project setup, reducing risks from misconfiguration.',
@@ -64,7 +64,7 @@ export const GROUPS: Group[] = [
6464
})),
6565
},
6666
{
67-
slug: 'miscellaneous-group',
67+
slug: 'miscellaneous',
6868
title: 'Miscellaneous',
6969
description:
7070
'Errors that do not bring any specific value to the developer, but are still useful to know.',

0 commit comments

Comments
 (0)