Ignore release dir for linting etc.

This commit is contained in:
Râu Cao 2026-01-22 16:52:26 +07:00
parent 2a203e8e82
commit 86b85e9a0b
Signed by: raucao
GPG Key ID: 37036C356E56CC51
4 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,7 @@
# compiled output
/dist/
/release/
# misc
/coverage/

View File

@ -3,3 +3,4 @@
# compiled output
/dist/
/release/

View File

@ -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

View File

@ -30,7 +30,7 @@ const esmParserOptions = {
};
export default defineConfig([
globalIgnores(['dist/', 'coverage/', '!**/.*']),
globalIgnores(['dist/', 'coverage/', 'release/', '!**/.*']),
js.configs.recommended,
eslintConfigPrettier,
ember.configs.base,