From 1a01da8abb15e68f30df86b77b8b19837b3531e6 Mon Sep 17 00:00:00 2001 From: octocorvus Date: Wed, 8 May 2024 02:46:14 +0000 Subject: [PATCH] exclude top-level build directory from eslint checks Some javascript files can be present there, causing build to fail due to eslint checks. --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index 947f9bd..e32bc9e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -26,6 +26,7 @@ export default [ ignores: [ "app/build/", "app/src/*/assets/viewer", + "build/", "releases/" ] }