gitextract_ibjnkmu0/ ├── .cspell.json ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── dependency-review.yml │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── eslint.config.mjs ├── husky.config.js ├── jest.config.js ├── lint-staged.config.js ├── package.json ├── src/ │ ├── ESLintError.js │ ├── getESLint.js │ ├── index.js │ ├── linter.js │ ├── options.js │ ├── options.json │ └── utils.js ├── test/ │ ├── .badeslintrc │ ├── autofix-stop.test.js │ ├── autofix.test.js │ ├── cached.test.js │ ├── child-compiler.test.js │ ├── circular-plugin.test.js │ ├── config-for-tests/ │ │ ├── .eslintrc.js │ │ └── eslint.config.mjs │ ├── context.test.js │ ├── emit-error.test.js │ ├── emit-warning.test.js │ ├── empty.test.js │ ├── error.test.js │ ├── eslint-lint.test.js │ ├── eslint-options.test.js │ ├── eslint-path.test.js │ ├── eslintrc-config.test.js │ ├── exclude.test.js │ ├── fail-on-config.test.js │ ├── fail-on-error.test.js │ ├── fail-on-warning.test.js │ ├── fixtures/ │ │ ├── [symbols]/ │ │ │ ├── error.js │ │ │ └── symbols-entry.js │ │ ├── cache.js │ │ ├── child-entry.js │ │ ├── error-entry.js │ │ ├── error-warn-entry.js │ │ ├── error.js │ │ ├── eslintrc-config.js │ │ ├── exclude-entry.js │ │ ├── exclude-folder-entry.js │ │ ├── fixable-clone-entry.js │ │ ├── fixable.js │ │ ├── flat-config.js │ │ ├── folder/ │ │ │ ├── error.js │ │ │ └── readme.md │ │ ├── full-of-problems-entry.js │ │ ├── full-of-problems.js │ │ ├── good-entry.js │ │ ├── good.js │ │ ├── ignore-entry.js │ │ ├── ignore.js │ │ ├── index.js │ │ ├── lint-more-entry.js │ │ ├── lint-more.js │ │ ├── lint-one-entry.js │ │ ├── lint-two-entry.js │ │ ├── lint.js │ │ ├── media/ │ │ │ └── some-video.ts │ │ ├── multiple-entry.js │ │ ├── nonfixable-clone-entry.js │ │ ├── nonfixable.js │ │ ├── query-entry.js │ │ ├── require.js │ │ ├── resource-query-entry.js │ │ ├── warn-entry.js │ │ ├── warn-error-entry.js │ │ └── warn.js │ ├── flat-config.test.js │ ├── formatter-custom.test.js │ ├── formatter-eslint.test.js │ ├── formatter-official.test.js │ ├── formatter-write.test.js │ ├── ignore.test.js │ ├── lint-dirty-modules-only.test.js │ ├── mock/ │ │ ├── eslint/ │ │ │ ├── index.js │ │ │ └── package.json │ │ └── formatter/ │ │ └── index.js │ ├── multiple-instances.test.js │ ├── ok.test.js │ ├── parameters.test.js │ ├── query.test.js │ ├── quiet.test.js │ ├── resource-query.test.js │ ├── symbols.test.js │ ├── threads.test.js │ ├── utils/ │ │ ├── conf.js │ │ └── pack.js │ ├── utils.test.js │ ├── warning.test.js │ └── watch.test.js ├── tsconfig.json └── types/ ├── ESLintError.d.ts ├── getESLint.d.ts ├── index.d.ts ├── linter.d.ts ├── options.d.ts └── utils.d.ts