The ESLint Config Inspector allows you to examine your flat configuration. It displays the rules you have set up and the files to which they apply. Use the following command to inspect your configuration:

eslint --inspect-config

Naming your config objects will help you easily identify them when using the inspector:

// eslint.config.js
export default [
{
name: "common", // <-- Define a name
rules: {
"no-console": "error",
},
},
{
name: "react", // <-- Define a name
plugin: { react },
rules: {
"react/jsx-boolean-value": "error",
},
},
];