You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the rules are provided at the top level,
instead of under an overrides property.
Providing the rules under the overrides property was never a good idea.
It prevents specifying which files the rules apply to (e.g. [*.js, *.ts]).
I apologize.
To migrate, make sure that your extends property is under an overrides item.
An example is in the readme.
To help verify your configuration,
you could obtain a list of files that will be linted, this way: DEBUG=eslint:cli-engine npx eslint <path>.
Bug fixes
rules are at top level (not under overrides) (25401c9), closes #1149#1088