Skip to content

Commit 7eaa346

Browse files
Merge pull request #11 from snelusha/chore/noto-guidelines
2 parents 1749efd + 5369ea6 commit 7eaa346

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.noto/commit-prompt.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Commit Message Guidelines
2+
3+
## Format
4+
Simple, concise descriptions. No conventional commits format detected.
5+
6+
## Style Rules
7+
- **Tense**: Imperative / Present (e.g., "Add", "Fix", "Update")
8+
- **Capitalization**: First letter capitalized
9+
- **Length**: Concise, typically under 70 characters
10+
- **Tone**: Technical
11+
12+
## Commit Types
13+
Based on the history, the types are inferred. There is no strict adherence to types, so be mindful of the context.
14+
- `Refactor`: Code improvements or changes without altering functionality.
15+
- `Bump`: Version updates, usually in package.json.
16+
- `Update`: General updates, often encompassing documentation, configurations, or dependencies.
17+
- `Add`: Introducing new files, features, or functionalities.
18+
- `Fix`: Resolving bugs or errors.
19+
- `Initial commit`: The very first commit to start the project.
20+
21+
## Scope Usage
22+
No scopes used.
23+
24+
## Description Patterns
25+
Start with an action verb (e.g., Add, Fix, Update, Refactor, Bump). Clearly state what is being changed or added. Mention specific files or areas affected where relevant (e.g., package.json, README, editor command).
26+
27+
## Examples from History
28+
- Refactor imports in version and editor commands to use node: prefix
29+
- Bump version to 1.0.6 in package.json
30+
- Fix editor command execution by replacing spawn with exec for better output handling and error management
31+
- Add .gitignore file and implement version command in CLI
32+
- Update README and version to 1.0.5; add version check command and improve editor command handling

0 commit comments

Comments
 (0)