Skip to content

Commit 700047b

Browse files
committed
Remove obsolete comment
1 parent 5a3cd65 commit 700047b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/ts-codegen/src/utils/cleanse.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ export const cleanFor = (str: string) => {
66
2. ONLY if you find capitals after, modify it
77
*/
88

9-
// When we upgrade to eslint v9, we can remove this exception and
10-
// rely on allExceptWhileTrue (https://eslint.org/docs/latest/rules/no-constant-condition)
11-
// eslint-disable-next-line no-constant-condition
129
while (true) {
1310
const match = str.match(/(_[a-z]+_)[A-Z]/);
1411
if (!match) break;

0 commit comments

Comments
 (0)