Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertAKARobin committed Aug 29, 2024
1 parent 3e240c6 commit 9d3fb4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/lib/rules/no-extra-spacing-text.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ module.exports = {
const text = node.value;
const matcher = /(^|[^\n \t])([ \t]{2,})($|[^\n \t])/g;

// eslint-disable-next-line no-constant-condition
while (true) {
// eslint-disable-line no-constant-condition
const offender = matcher.exec(text);
if (offender === null) {
break;
Expand Down

0 comments on commit 9d3fb4a

Please sign in to comment.