Ignore release dir for linting etc.
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
# compiled output
|
# compiled output
|
||||||
/dist/
|
/dist/
|
||||||
|
/release/
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
/coverage/
|
/coverage/
|
||||||
|
|||||||
@@ -3,3 +3,4 @@
|
|||||||
|
|
||||||
# compiled output
|
# compiled output
|
||||||
/dist/
|
/dist/
|
||||||
|
/release/
|
||||||
|
|||||||
@@ -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).
|
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.
|
2. **Edit Bookmarks:** Allow users to edit the title and description of saved places.
|
||||||
3. **Performance:** Monitor performance with large datasets (thousands of bookmarks).
|
3. **Linting & Code Quality:** Fix remaining CSS errors, remove inline styles in `map.gjs`, and address unused variables/runloop usage.
|
||||||
4. **Testing:** Add automated tests for the geohash coverage and retry logic.
|
4. **Performance:** Monitor performance with large datasets (thousands of bookmarks).
|
||||||
|
5. **Testing:** Add automated tests for the geohash coverage and retry logic.
|
||||||
|
|
||||||
## Technical Constraints
|
## Technical Constraints
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ const esmParserOptions = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default defineConfig([
|
export default defineConfig([
|
||||||
globalIgnores(['dist/', 'coverage/', '!**/.*']),
|
globalIgnores(['dist/', 'coverage/', 'release/', '!**/.*']),
|
||||||
js.configs.recommended,
|
js.configs.recommended,
|
||||||
eslintConfigPrettier,
|
eslintConfigPrettier,
|
||||||
ember.configs.base,
|
ember.configs.base,
|
||||||
|
|||||||
Reference in New Issue
Block a user