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
In my eslint.config.js file, when there is an ignores object that includes a rule starting with !, for example, { ignores: ['!xxx'] }, the file list returned by payload.json only includes the files specified in ignores.
Problem Description
In my
eslint.config.js
file, when there is anignores
object that includes a rule starting with!
, for example,{ ignores: ['!xxx'] }
, the file list returned bypayload.json
only includes the files specified inignores
.Steps to Reproduce
eslint.config.js
is as follows:npx eslint/config-inspector
.payload.json
request in the browser.Expected Result
payload.json
should return all relevant files, not just those specified inignores
.Actual Result
payload.json
only returns files that match!src/components/*.vue
inignores
.Environment Information
eslint/config-inspector
version: [0.6.0]Reproducible Link
You can reproduce the issue using the following StackBlitz link: StackBlitz Example
The text was updated successfully, but these errors were encountered: