Contributing - scribble-rs/scribble.rs GitHub Wiki
There aren't many rules you need to follow when contributing. Anyway, please follow the little amount of rules that there are in order to ease my life ;)
- Before you change behaviour or add new features, create an issue, so we can discuss it beforehand.
- Don't just introduce big dependencies without talking about it beforehand.
- Try to always format your code using the official golang code formatter
gofmt
. Most IDEs have this built-in. If possible always invoke formatting with the parameter-s
. Formatting the whole project can be done manually viagofmt -s -w .
. - Always make a new git branch for each feature, as it helps keep PRs clean and separate.