Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 912 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (13 loc) · 912 Bytes

How to contribute

Contributions are essential for keeping this project great. Here you can find few guidelines that we need contributors to follow in order to simplify review / acceptance process.

Git workflow

  1. Fork the repository on GitHub
  2. Create your feature branch (git checkout -b my-new-feature). Please avoid working directly on master branch.
  3. Make logical commits (git commit -am 'Meaningful commit message') for each atomic change.
  4. Push your branch to your fork of the repository (git push origin my-new-feature)
  5. Submit a new Pull Request to the repository in AutoScout24 organization.

Pull request acceptance criteria:

  • TravisCI build is green (build, code style checks and all tests passed).
  • Necessary unit tests are added/updated for JS code.
  • Necessary layout specs are added/updated for atoms/molecules/organisms.
  • All review feedback comments are resolved.