How can I disable @typescript-eslint rules within the new ESLint 9 Flat config, in particular how it pertains to my current config. For example, I would like to disable @typescript-eslint/no-explicit-any
. Below is the config that was setup when I initialized eslint.
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{
languageOptions: {
globals: globals.browser
}
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];