Skip to content

Commit

Permalink
chore(deps): update dependency typescript-eslint to v8.8.0 (#5050)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency typescript-eslint to v8.8.0

* Fix lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nico Jansen <[email protected]>
  • Loading branch information
renovate[bot] and nicojs authored Sep 30, 2024
1 parent 676be74 commit 80707a6
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 53 deletions.
98 changes: 49 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0"
"typescript-eslint": "8.8.0"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/checker/checker-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class CheckerWorker implements CheckerResource {
this.innerCheckers = new Map(options.checkers.map((name) => [name, pluginCreator.create(PluginKind.Checker, name)]));
}
public async init(): Promise<void> {
for await (const [name, checker] of this.innerCheckers.entries()) {
for (const [name, checker] of this.innerCheckers.entries()) {
try {
await checker.init();
} catch (error: unknown) {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/sandbox/multi-preprocessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class MultiPreprocessor implements FilePreprocessor {
constructor(private readonly preprocessors: FilePreprocessor[]) {}

public async preprocess(project: Project): Promise<void> {
for await (const preprocessor of this.preprocessors) {
for (const preprocessor of this.preprocessors) {
await preprocessor.preprocess(project);
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/instrumenter/src/instrumenter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class Instrumenter {
const outFiles: File[] = [];
let mutantCount = 0;
const parse = this._createParser(options);
for await (const { name, mutate, content } of files) {
for (const { name, mutate, content } of files) {
const ast = await parse(content, name);
this._transform(ast, mutantCollector, { options, mutateDescription: toBabelLineNumber(mutate), logger: this.logger });
const mutatedContent = this._print(ast);
Expand Down

0 comments on commit 80707a6

Please sign in to comment.