Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keep/update conduct email #125

Merged
merged 2 commits into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If a community member engages in unacceptable behavior, we may take any action w

## Reporting Violations

If you are subject to or witness unacceptable behavior, or have any other concerns, please notify us immediately. You can report violations by contacting the project maintainers at [INSERT EMAIL ADDRESS]. All reports will be kept confidential.
If you are subject to or witness unacceptable behavior, or have any other concerns, please notify us immediately. You can report violations by contacting the project maintainers at hello@staticmania.com. All reports will be kept confidential.

## Attribution

Expand Down
2 changes: 2 additions & 0 deletions Contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ If you're a developer, you can contribute to Keep React by submitting code chang

- **Make Changes:** Make your code changes or additions.

- **Proper Commit Message:** Commit your changes and commit message must be starts with Capital letter and ends with period sign like dot(.). Commit message will be minimum 14 characters long.

- **Test Your Changes:** Ensure that your changes don't introduce new issues.

- **Submit a Pull Request:** Push your changes to your forked repository and submit a pull request to the main Keep React repository.
Expand Down
3 changes: 2 additions & 1 deletion commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
// extends: ['@commitlint/config-conventional'],
extends: [],
rules: {
'header-min-length': [2, 'always', 14],
Expand All @@ -12,7 +13,7 @@ module.exports = {
return [/^[A-Z]/.test(raw), 'Commit message must start with a capital letter']
},
'header-end-period': ({ header }) => {
return [/\.$/.test(header), 'Commit message must end with a period']
return [/\.$/.test(header), 'Commit message must end with a dot(.).']
},
},
},
Expand Down
Loading