From fd0279cdf498383bebac05a9ee8d628e39ffc106 Mon Sep 17 00:00:00 2001 From: evan Date: Tue, 22 Apr 2025 07:28:00 -0700 Subject: [PATCH] have eslint ignore gatekeeper because it's an optional submodule --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index 8b14cd1f5..b204b29c7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -13,6 +13,7 @@ const gitignorePath = path.resolve(__dirname, ".gitignore"); /** @type {import('eslint').Linter.Config[]} */ export default [ includeIgnoreFile(gitignorePath), + { ignores: ["src/server/gatekeeper/**"] }, { files: ["**/*.{js,mjs,cjs,ts}"] }, { languageOptions: { globals: { ...globals.browser, ...globals.node } } }, pluginJs.configs.recommended,