# will produce lintslint( text ="while (TRUE) { }", linters =repeat_linter())#><text>:1:1: style: [repeat_linter] Use 'repeat' instead of 'while (TRUE)' for infinite loops.#> while (TRUE) { }#> ^~~~~~~~~~~~# okaylint( text ="repeat { }", linters =repeat_linter())#>ℹ No lints found.