Skip to content

Commit

Permalink
feat: Minor copy change
Browse files Browse the repository at this point in the history
  • Loading branch information
Undistraction committed Jul 23, 2024
1 parent 71e5a25 commit 504a5e2
Show file tree
Hide file tree
Showing 3 changed files with 8,851 additions and 1 deletion.
33 changes: 33 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
export default {
// config-conventional is based on Conventional Commit:
// https://conventionalcommits.org/
extends: [`@commitlint/config-conventional`],
rules: {
'type-enum': [
2,
`always`,
[
`build`,
`ci`,
`chore`,
`content`,
`debug`,
`deps`,
`docs`,
`feat`,
`fix`,
`hotfix`,
`merge`,
`perf`,
`refactor`,
`revert`,
`style`,
`test`,
],
],
// Scope can be any case.
'scope-case': [0, `always`],
// Subject should be sentence case.
'subject-case': [2, `always`, `sentence-case`],
},
}
Loading

0 comments on commit 504a5e2

Please sign in to comment.