You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `.qoder` directory contains development artifacts generated during the development process of the syncable-cli project. These files are not part of the released code and should be ignored by version control.
6
+
7
+
## Contents
8
+
9
+
The directory typically contains:
10
+
11
+
- Quest files (design documents) in `.qoder/quests/`
12
+
- Rule files in `.qoder/rules/`
13
+
14
+
## Purpose
15
+
16
+
These files are generated by the Qoder IDE during development to store:
17
+
18
+
1. Quest files - Development tasks and implementation guides
19
+
2. Rules files - Project-specific coding rules and constraints
20
+
21
+
## Version Control
22
+
23
+
The `.qoder` directory and all its contents are intentionally ignored in version control through the `.gitignore` file. This ensures that:
24
+
25
+
1. Development artifacts don't clutter the repository
26
+
2. Developer-specific configurations are not shared
27
+
3. The release process is not affected by uncommitted changes
28
+
29
+
## Git Ignore Patterns
30
+
31
+
The following patterns in `.gitignore` ensure proper ignoring of the directory:
32
+
33
+
```gitignore
34
+
.qoder/
35
+
.qoder/*
36
+
.qoder/**/*
37
+
```
38
+
39
+
These patterns ensure that all files and subdirectories within the `.qoder` directory are ignored by Git.
0 commit comments