config-inspector icon indicating copy to clipboard operation
config-inspector copied to clipboard

A visual tool for inspecting and understanding your ESLint flat configs.

Results 15 config-inspector issues
Sort by recently updated
recently updated
newest added

I wanted to debug my project not working in this tool (same issue as #48), but when I tried load dev server I was bombarded by endless ERROR [unhandledRejection] read...

bug

Config Inspector shows that `*.js` matches `src/main.js` Repo to reproduce the issue: https://github.com/CloudNStoyan/eslint-config-inspect-filepath-issue Running `npm run lint` shows that the "Root .js files only" Config Item is not active for...

When I was using Vite, I found the shortcuts like 'o' and 'c' incredibly useful. They were a lifesaver. Therefore, I believe the config inspector could benefit from having similar...

:robot: I have created a release *beep* *boop* --- ## [0.4.9](https://github.com/eslint/config-inspector/compare/v0.4.8...v0.4.9) (2024-05-22) ### Bug Fixes * dev time endless ERROR [unhandledRejection] read ECONNRESET ([#50](https://github.com/eslint/config-inspector/issues/50)) ([dea7f77](https://github.com/eslint/config-inspector/commit/dea7f7754d10ac0518ae5d15bfcef9286862c83f)) ### Documentation * update readme...

autorelease: pending
chore

I am working on setting up flat configuration with ESLint v8.57.0 as an initial step before switching to v9. I wanted to check the configuration, so I was trying out...

My project is not ESM ready, therefore I have to use the `.mjs` extension to let only eslint use ESM. The analyzer fails to pick up the config file, but...

`eslint.config.mjs`: ```js import path from 'node:path'; import { fileURLToPath } from 'node:url'; import js from '@eslint/js'; import { fixupConfigRules, includeIgnoreFile } from '@eslint/compat'; import { FlatCompat } from '@eslint/eslintrc'; const...

It would be nice to have a way to compare two different full configurations, and be able to highlight only rules that are different between them. A possible example would...

Thanks for this project, it makes configuring ESLint a lot easier. The light theme has a very low contrast though. I initially thought something is broken, but it doesn't seem...

When a negative ignore is added then the file matcher fails it seems. Couldn't find an issue mentioning it and since the file matcher is mentioned as being experimental I...