From 86b85e9a0b758531905454fa9b3e3f554fea0828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Thu, 22 Jan 2026 16:52:26 +0700 Subject: [PATCH] Ignore release dir for linting etc. --- .prettierignore | 1 + .stylelintignore | 1 + PROJECT_STATUS.md | 5 +++-- eslint.config.mjs | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.prettierignore b/.prettierignore index d7ab459..efac621 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,6 +3,7 @@ # compiled output /dist/ +/release/ # misc /coverage/ diff --git a/.stylelintignore b/.stylelintignore index fc178a0..3c466b4 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -3,3 +3,4 @@ # compiled output /dist/ +/release/ diff --git a/PROJECT_STATUS.md b/PROJECT_STATUS.md index 6c275ec..dbdaefe 100644 --- a/PROJECT_STATUS.md +++ b/PROJECT_STATUS.md @@ -90,8 +90,9 @@ We are building **Marco**, a decentralized maps application using **Ember.js** ( 1. **App Header:** Implement a transparent header bar with the App Logo (left) and Login/User Info (right). 2. **Edit Bookmarks:** Allow users to edit the title and description of saved places. -3. **Performance:** Monitor performance with large datasets (thousands of bookmarks). -4. **Testing:** Add automated tests for the geohash coverage and retry logic. +3. **Linting & Code Quality:** Fix remaining CSS errors, remove inline styles in `map.gjs`, and address unused variables/runloop usage. +4. **Performance:** Monitor performance with large datasets (thousands of bookmarks). +5. **Testing:** Add automated tests for the geohash coverage and retry logic. ## Technical Constraints diff --git a/eslint.config.mjs b/eslint.config.mjs index e834463..508dbbf 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -30,7 +30,7 @@ const esmParserOptions = { }; export default defineConfig([ - globalIgnores(['dist/', 'coverage/', '!**/.*']), + globalIgnores(['dist/', 'coverage/', 'release/', '!**/.*']), js.configs.recommended, eslintConfigPrettier, ember.configs.base,