-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ichoosetoaccept/update/contributing-docs
chore(release): prepare release 2024.12.3
- Loading branch information
Showing
7 changed files
with
139 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
1. Whenever we make a new commit, we should update CHANGELOG.md. Same for merge/pull requests that happen on remote. | ||
1. The CHANGELOG.md is automatically updated through auto-changelog when pull requests are merged. For local development, significant changes should still be documented in the Unreleased section. | ||
2. This is a public repository, so please be respectful of others and make sure the content makes sense to others. | ||
3. We have access to the Github CLI via the gh command. We are already authenticated. | ||
4. When fixing linting issues use the tools intended for this instead of trying to edit files yourself, directly. You can see which tools we have in package.json. | ||
5. We use the Angular commit convention for this project. | ||
5. When committing, put quotes around your commit message. Also, it's a good practice to format commit messages with a type, scope (optional), and description. The correct format should be: type(scope): description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,34 @@ | ||
/** | ||
* Commitlint configuration for documentation repository | ||
* | ||
* Commit Message Format: | ||
* <type>: <description> | ||
* | ||
* Types: | ||
* - add: Add new documentation | ||
* - update: Update existing documentation | ||
* - remove: Remove documentation | ||
* - fix: Fix typos, formatting, or broken links | ||
* - meta: Changes to the repository itself (CI, scripts, etc) | ||
* | ||
* Examples: | ||
* - add: create guide for windsurf setup | ||
* - update: improve clarity of installation steps | ||
* - remove: outdated tutorial section | ||
* - fix: correct typos in README | ||
* - meta: update markdown linting rules | ||
*/ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'type-enum': [ | ||
2, | ||
'always', | ||
[ | ||
'feat', // New feature | ||
'fix', // Bug fix | ||
'docs', // Documentation only changes | ||
'style', // Changes that do not affect the meaning of the code | ||
'refactor',// A code change that neither fixes a bug nor adds a feature | ||
'perf', // A code change that improves performance | ||
'test', // Adding missing tests or correcting existing tests | ||
'build', // Changes that affect the build system or external dependencies | ||
'ci', // Changes to our CI configuration files and scripts | ||
'chore', // Other changes that don't modify src or test files | ||
'revert', // Reverts a previous commit | ||
], | ||
['add', 'update', 'remove', 'fix', 'meta'] | ||
], | ||
'type-case': [2, 'always', 'lower'], | ||
'type-case': [2, 'always', 'lowerCase'], | ||
'type-empty': [2, 'never'], | ||
'scope-case': [2, 'always', 'lower'], | ||
'subject-empty': [2, 'never'], | ||
'subject-full-stop': [2, 'never', '.'], | ||
'header-max-length': [2, 'always', 72], | ||
}, | ||
}; | ||
'subject-case': [2, 'always', 'lowerCase'], | ||
'subject-full-stop': [2, 'never', '.'] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters