We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e043ac7 commit a34c450Copy full SHA for a34c450
heft-plugins/heft-lint-plugin/src/Eslint.ts
@@ -155,8 +155,7 @@ export class Eslint extends LinterBase<TEslint.ESLint.LintResult> {
155
// that the fix messages belong to the returned result. If we somehow receive multiple results, we will
156
// drop the messages on the floor, but since they are only used for logging, this should not be a problem.
157
const fixMessages: TEslint.Linter.LintMessage[] = this._currentFixMessages.splice(
158
- 0,
159
- this._currentFixMessages.length
+ 0
160
);
161
if (lintResults.length === 1) {
162
this._fixMessagesByResult.set(lintResults[0], fixMessages);
0 commit comments