diff --git a/eslint.config.mjs b/eslint.config.mjs index 5c511e8..0113d51 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -6,10 +6,15 @@ export default tseslint.config( ...tseslint.configs.recommended, ...tseslint.configs.stylistic, { - // these are overriding good style for now to reduce the error count + files: ["src/**/*.ts"], + // these are overriding good style for now to reduce the error count - the intention is to reintroduce gradually rules : { "prefer-const": "off", - "@typescript-eslint/consistent-type-assertions": "off" + "@typescript-eslint/consistent-type-assertions": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "no-array-constructor": "off", // see https://typescript-eslint.io/rules/no-array-constructor/ + "@typescript-eslint/no-array-constructor": "off" } }