source: frontend/node_modules/hoopy/CONTRIBUTING.md

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 464 bytes
Line 
1# Contribution guidelines
2
3* Install/update the dependencies:
4 ```
5 npm i
6 ```
7
8* Make sure all of the tests pass:
9 ```
10 npm t
11 ```
12
13* Make sure the code lints:
14 ```
15 npm run lint
16 ```
17
18* Adhere to the coding conventions
19 that are used elsewhere in the codebase.
20
21* New code must have new unit tests.
22
23* New features
24 or changes to existing features
25 must be documented in the [readme file](README.md).
26
27* Add yourself to the [authors file](AUTHORS).
28
Note: See TracBrowser for help on using the repository browser.