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.
The directory typically contains:
- Quest files (design documents) in
.qoder/quests/ - Rule files in
.qoder/rules/
These files are generated by the Qoder IDE during development to store:
- Quest files - Development tasks and implementation guides
- Rules files - Project-specific coding rules and constraints
The .qoder directory and all its contents are intentionally ignored in version control through the .gitignore file. This ensures that:
- Development artifacts don't clutter the repository
- Developer-specific configurations are not shared
- The release process is not affected by uncommitted changes
The following patterns in .gitignore ensure proper ignoring of the directory:
.qoder/
.qoder/*
.qoder/**/*These patterns ensure that all files and subdirectories within the .qoder directory are ignored by Git.