Skip to content

fix(utils): grammar #11471

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/utils/src/ts-eslint/Rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export interface RuleMetaData<
/**
* Specifies default options for the rule. If present, any user-provided options in their config will be merged on top of them recursively.
* This merging will be applied directly to `context.options`.
* If you want backwards-compatible support for earlier ESLint version; consider using the top-level `defaultOptions` instead.
* If you want backwards-compatible support for earlier ESLint version, consider using the top-level `defaultOptions` instead.
*
* since ESLint 9.15.0
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/ts-eslint/eslint/FlatESLint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export namespace FlatESLint {
/**
* The path to a configuration file, overrides all configurations used with this instance.
* The options.overrideConfig option is applied after this option is applied.
* Searches for default config file when falsy; doesn't do any config file lookup when `true`; considered to be a config filename when a string.
* Searches for default config file when falsy. Does not do any config file lookup when `true`. Considered to be a config filename when a string.
Copy link
Member

@Josh-Cena Josh-Cena Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previous text is correct and makes slightly more sense to me, although I would personally make it a bulleted list

* @default false
*/
overrideConfigFile?: boolean | string;
Expand Down
Loading