You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.8 KiB

  1. CONTRIBUTING
  2. ============
  3. There are three ways in which you can contribute to this repository:
  4. 1. By improving the documentation
  5. 2. By working on the back-end application
  6. 3. By working on the front-end application
  7. Below are the guidelines for working on pull requests:
  8. ## General
  9. - 2 spaces indendation
  10. ## Documentation
  11. - No spelling mistakes
  12. - No orthographic mistakes
  13. - No Markdown syntax errors
  14. ## Back-end application
  15. It is expected that you have a working development environment set up. The development environment includes rubocop, which checks your Ruby code for compliance with our style guide and best practices. Sublime Text, likely like other editors, has a Rubocop plugin that runs checks on files as you edit them. The codebase also has a test suite.
  16. * The codebase is not perfect, at the time of writing, but it is expected that you do not introduce new code style violations
  17. * The rspec test suite must pass
  18. * To the extent that it is possible, verify your changes. In the best case, by adding new tests to the test suite. At the very least, by running the server or console and checking it manually
  19. * If you are introducing new strings to the user interface, they must be using localization methods
  20. If your code has syntax errors that won't let it run, it's a good sign that the pull request isn't ready for submission yet.
  21. ## Front-end application
  22. It is expected that you have a working development environment set up (see back-end application section). This project includes an ESLint configuration file, with which you can lint your changes.
  23. * Avoid grave ESLint violations
  24. * Verify that your changes work
  25. * If you are introducing new strings, they must be using localization methods
  26. If the JavaScript or CSS assets won't compile due to a syntax error, it's a good sign that the pull request isn't ready for submission yet.