From 5c6856d14a93464b1f62946f1e5b733e6885af1c Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:30:22 -0400 Subject: [PATCH] Add files-override to eslint-ignore --- eslint.config.mjs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 175d599..43781cd 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -24,6 +24,11 @@ export default [ pluginJs.configs.recommended, eslintPluginPrettierRecommended, { - ignores: ['tests/fixture/*', 'tests/fixture-ts/*', 'files/*'], + ignores: [ + 'tests/fixture/*', + 'tests/fixture-ts/*', + 'files/*', + 'files-override/*', + ], }, ];