Skip to content

Commit

Permalink
refactor: ✨ Improve wording in conventional commit descriptions
Browse files Browse the repository at this point in the history
Update wording of the conventional commit descriptions to be grammatically correct.
  • Loading branch information
ThijSlim committed Mar 22, 2023
1 parent 9211252 commit 5c3ebf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
"lint-staged": {
"*.ts": "eslint --cache"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.2"
},
"devDependencies": {
"@clack/prompts": "^0.6.1",
"@pvtnbr/eslint-config": "^0.33.0",
Expand Down
8 changes: 0 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/utils/openai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ const getExtraContextForConventionalCommits = () => {
chore: 'includes a technical or preventative maintenance task',
ci: 'continuous integration or continuous delivery scripts or configuration files',
deprecate: 'deprecates existing functionality',
docs: 'add or update documentation',
docs: 'adds or updates documentation',
perf: 'improve the performance of algorithms or general execution',
remove: 'removes a feature or dependency',
refactor: 'code refactoring',
remove: 'remove a feature',
revert: 'revert one or more commits',
security: 'improve security',
style: 'update or reformat the style of the source code',
revert: 'reverts one or more commits',
security: 'improves security',
style: 'updates or reformats the style of the source code',
test: 'changes to the suite of automated tests',
};

Expand Down

0 comments on commit 5c3ebf2

Please sign in to comment.