Update Bot

This commit is contained in:
2026-03-15 11:58:43 +01:00
parent b67c111ffc
commit cd99275933
560 changed files with 23173 additions and 55113 deletions

View File

@@ -93,19 +93,6 @@ class WarningService {
"ESLintPoorConcurrencyWarning",
);
}
/**
* Emits a warning when eslint-env configuration comments are found.
* @param {string} filename The name of the file being linted.
* @param {number} line The line number of the comment.
* @returns {void}
*/
emitESLintEnvWarning(filename, line) {
this.emitWarning(
`/* eslint-env */ comments are no longer recognized when linting with flat config and will be reported as errors as of v10.0.0. Replace them with /* global */ comments or define globals in your config file. See https://eslint.org/docs/latest/use/configure/migration-guide#eslint-env-configuration-comments for details. Found in ${filename} at line ${line}.`,
"ESLintEnvWarning",
);
}
}
module.exports = { WarningService };