Skip to content

Commit 9245eee

Browse files
authored
Merge pull request #1253
* feat(25337): update dependencies * feat(25337): add automatic layout (subtask 1-6) * chore(25337): add context * fix(25337): fix animation (subtask 7) * refactor(25337): relocate the layout components * chore(25337): add context * feat(25337): add manual layout (subtask 8) * feat(25337): refactor options (subtask 9) * refactor(25337): refactor i18n (subtask 10) * test(25337): add tests (subtask 11) * chore(25337): add context * chore(25337): fix gitignore * chore(25337): trigger ci * chore(25337): linting * test(25337): fix tests * chore(25337): linting * test(25337): fix tests * test(25337): fix tests * chore(25337): exclude json schema from coverage * chore(25337): refactor the debug log * chore(25337): refactor the debug log * chore(25337): update context * test(25337): fix tests * chore(25337): update context * test(25337): add tests * fix(25337): clean code duplication and add tests * test(25337): add tests * test(25337): fix tests * chore(25337): change config * test(25337): fix tests * chore(25337): clean vite's logger * test(25337): fix PO getters * test(25337): fix tests * fix(25337): fix condition * fix(25337): linting
1 parent 36b3a37 commit 9245eee

File tree

97 files changed

+24169
-349
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+24169
-349
lines changed

.github/workflows/trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ok, this one too
1+
oups!

hivemq-edge-frontend/.editorconfig

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ max_line_length = 180
99

1010
# Markdown files
1111
[*.md]
12-
trim_trailing_whitespace = false
12+
trim_trailing_whitespace = false
13+
14+
# Markdown files in .tasks/ directory - disable code injection analysis
15+
[.tasks/**/*.md]
16+
trim_trailing_whitespace = false
17+
# Disable language injection for code blocks in documentation
18+
ij_markdown_disable_injections = true

hivemq-edge-frontend/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ test-results
4848

4949
# Keep task documentation in version control
5050
# DO NOT ignore .tasks/ directory - it contains important task tracking
51+
/.tasks-log/
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Tasks Log Directory
2+
3+
This directory contains ephemeral session documents generated during task work. These are working documents that complement the permanent documentation in `.tasks/`.
4+
5+
## Purpose
6+
7+
- **Temporary logs**: Session-specific documents that don't need to be in git
8+
- **AI-generated summaries**: Quick reference documents created during work sessions
9+
- **Running commentary**: Step-by-step records of what was done
10+
- **Troubleshooting notes**: Detailed fixes and issues resolved
11+
12+
## Naming Convention
13+
14+
All files follow this pattern:
15+
16+
```
17+
{TASK_NUMBER}_{INDEX}_{DESCRIPTIVE_NAME}.md
18+
```
19+
20+
### Examples:
21+
22+
- `25337_01_Phase1_Component_Tests_Complete.md`
23+
- `25337_02_Phase2_E2E_Tests_Complete.md`
24+
- `25337_03_TypeScript_Errors_Fixed.md`
25+
- `25337_04_Accessibility_Select_Fix.md`
26+
- `25337_05_CyWait_Removal_Complete.md`
27+
28+
### Components:
29+
30+
- **TASK_NUMBER**: The task/issue number (e.g., `25337`)
31+
- **INDEX**: Sequential number starting from 01 (e.g., `01`, `02`, `03`)
32+
- **DESCRIPTIVE_NAME**: Clear description using PascalCase or snake_case
33+
34+
## Git Status
35+
36+
This directory is **excluded from git** (see `.gitignore`). These are local working documents that:
37+
38+
- Help track session progress
39+
- Provide quick reference during work
40+
- Don't need to be committed to the repository
41+
42+
## Permanent Documentation
43+
44+
For permanent documentation that should be committed to git, use the `.tasks/` directory structure instead.
45+
46+
---
47+
48+
**Note:** Clean this directory periodically to remove old session logs.

0 commit comments

Comments
 (0)