Skip to content

Commit 332a18a

Browse files
committed
chore(commitlint.config): remove "dependencies" from "type-enum"
- remove "dependencies" from "type-enum" - CONTRIBUTING: fix small formatting problems
1 parent cbece46 commit 332a18a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ Must be one of the following:
3636
* **feat**: A new feature
3737
* **fix**: A bug fix
3838
* **docs**: Documentation only changes
39-
* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
40-
semi-colons, etc)
39+
* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
4140
* **refactor**: A code change that neither fixes a bug nor adds a feature
4241
* **perf**: A code change that improves performance
4342
* **test**: Adding missing or correcting existing tests
44-
* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation
45-
generation
43+
* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation generation
44+
* **revert**: Revert an commit
4645

4746
### Scope
4847

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module.exports = {
55
"rules": {
66
"scope-case": [0, "never"],
77
"body-min-length": [2, "always", 3],
8-
"type-enum": [2, "always", ['feat', 'fix', 'docs', 'style', 'refactor', 'perf', 'test', 'chore', 'revert', 'dependencies']]
8+
"type-enum": [2, "always", ['feat', 'fix', 'docs', 'style', 'refactor', 'perf', 'test', 'chore', 'revert']]
99
}
1010
}

0 commit comments

Comments
 (0)