Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 1.64 KB

CONTRIBUTING.md

File metadata and controls

67 lines (44 loc) · 1.64 KB

Contributing to junbae-mode

Thank you for showing interest in Junbae-mode and we appreciate any contribution.

Report a Bug or Feature

Whenever you find something that is not working properly, please first search the repository's issue page and make sure it's not reported by someone else already.

Before creating an issue, check the Issue Template for guidelines. Provide as much detail as possible.

You can submit issues with our issue form

Open a PR for Bugfix or Feature

  1. Fork this repository.
  2. Create a new branch:
# from main branch.
git checkout -b [branch name or issue number]

  1. Commit your changes
# example
git commit -m "your message"

  1. Push your changes:
git push origin [branch name or issue number]

  1. Create a Pull Request

Commit Convention

breaking: top-level version bump. used for major framework changes or large-scale project deployments.
feat: new feature for the user, not a new feature for building script
fix: bug fix for the user, not a fix to a build script
docs: changes to the documentation
style: formatting, missing semi-colons, etc; no production code change
refactor: refactoring production code, eg. renaming a variable
test: adding missing tests, refactoring tests; no production code change
chore: updating grunt tasks etc; no production code change

License

MIT License
Make sure to review it before contributing.