mirror of https://github.com/Hilbis/Hilbish
docs: bring contributing guide up to date
parent
15cf5bb6f3
commit
186d620311
|
@ -11,37 +11,38 @@ Use GitHub Issues to report any bugs or to request any features
|
||||||
that may be useful to *anyone* else.
|
that may be useful to *anyone* else.
|
||||||
|
|
||||||
Check [currently open issues](https://github.com/Rosettea/Hilbish/issues)
|
Check [currently open issues](https://github.com/Rosettea/Hilbish/issues)
|
||||||
and [closed ones](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aclosed) to make sure someone else hasn't already made the issue.
|
and [closed ones](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aclosed)
|
||||||
|
to make sure someone else hasn't already made the issue.
|
||||||
|
|
||||||
For bug reports, be sure to include:
|
For bug reports, be sure to include:
|
||||||
- Hilbish Version (`hilbish -v`)
|
- Hilbish Version (`hilbish -v`)
|
||||||
- Ways to reproduce
|
- Ways to reproduce
|
||||||
|
|
||||||
## Code
|
## Code
|
||||||
For any code contributions (Lua and/or Go), you should follow these
|
For any code contributions (Lua and/or Go), you should follow these rules:
|
||||||
rules:
|
|
||||||
- Tab size 4 indentation
|
- Tab size 4 indentation
|
||||||
- In Lua prefer no braces `()` if the function takes 1 argument
|
- 80 line column limit, unless it breaks code or anything like that
|
||||||
- Use camelCase for function names
|
- In Lua prefer no braces `()` if the function takes 1 string argument
|
||||||
|
- Use camelCase
|
||||||
|
|
||||||
### Making the Pull Request
|
### Making the Pull Request
|
||||||
1. Ensure that any new install or build dependencies are documented in
|
1. Ensure that any new install or build dependencies are documented in
|
||||||
the README.md and PR request.
|
the README.md and pull request.
|
||||||
|
|
||||||
2. Say in the pull request details the changes to the shell,
|
2. Mention any and all changes, this includes useful file locations and
|
||||||
this includes useful file locations and breaking changes.
|
breaking changes.
|
||||||
|
|
||||||
3. We use [SemVer](http://semver.org/) for versioning and
|
3. We use [Semver](http://semver.org/) for versioning and
|
||||||
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
|
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
|
||||||
for commit messages.
|
for commit messages. Please document any breaking changes and be sure to
|
||||||
Please document any backwards incompatible changes and be sure to name
|
write proper commits, or your pull request will not be considered.
|
||||||
your commits correctly.
|
|
||||||
|
|
||||||
4. Finally, make the pull request to the **dev** branch.
|
4. Finally, make the pull request.
|
||||||
|
|
||||||
## Finding Issues to Contribute to
|
## Finding Issues to Contribute to
|
||||||
You can check out the [help wanted](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+)
|
You can check out the [help wanted](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+)
|
||||||
labels to figure out what we need your help working on.
|
labels to figure out what we need your help working on.
|
||||||
|
|
||||||
The [up for grabs](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aopen+label%3A%22up+for+grabs%22+) labeled issues are low hanging fruit that should be
|
The [up for grabs](https://github.com/Rosettea/Hilbish/issues?q=is%3Aissue+is%3Aopen+label%3A%22up+for+grabs%22+)
|
||||||
easy for anyone. You can use this to get started on contributing!
|
labeled issues are low hanging fruit that should be easy for anyone. You can
|
||||||
|
use this to get started on contributing!
|
||||||
|
|
Loading…
Reference in New Issue