Ignore release dir for linting etc.
This commit is contained in:
parent
2a203e8e82
commit
86b85e9a0b
@ -3,6 +3,7 @@
|
||||
|
||||
# compiled output
|
||||
/dist/
|
||||
/release/
|
||||
|
||||
# misc
|
||||
/coverage/
|
||||
|
||||
@ -3,3 +3,4 @@
|
||||
|
||||
# compiled output
|
||||
/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).
|
||||
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
|
||||
|
||||
|
||||
@ -30,7 +30,7 @@ const esmParserOptions = {
|
||||
};
|
||||
|
||||
export default defineConfig([
|
||||
globalIgnores(['dist/', 'coverage/', '!**/.*']),
|
||||
globalIgnores(['dist/', 'coverage/', 'release/', '!**/.*']),
|
||||
js.configs.recommended,
|
||||
eslintConfigPrettier,
|
||||
ember.configs.base,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user