Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(utils): [ts-eslint] small type fixes #7474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/utils/src/ts-eslint/ESLint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ declare class ESLintBase {
* @param results The LintResult objects to write.
* @returns The promise that will be fulfilled after all files are written.
*/
static outputFixes(results: ESLint.LintResult): Promise<void>;
static outputFixes(results: ESLint.LintResult[]): Promise<void>;
/**
* The version text.
*/
Expand Down Expand Up @@ -164,7 +164,7 @@ namespace ESLint {
* Configuration object, overrides all configurations used with this instance.
* You can use this option to define the settings that will be used even if your configuration files configure it.
*/
overrideConfig?: Linter.ConfigOverride | null;
overrideConfig?: Linter.Config | null;
/**
* The path to a configuration file, overrides all configurations used with this instance.
* The options.overrideConfig option is applied after this option is applied.
Expand Down