source: frontend/node_modules/bfj/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: 801 bytes
Line 
1# Contribution guidelines
2
3* Install/update the dependencies:
4 ```
5 npm install
6 ```
7
8* Make sure the code lints:
9 ```
10 npm run lint
11 ```
12
13* Make sure all of the tests pass:
14 ```
15 npm test
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.
26
27* Add yourself to the [authors] file.
28
29* Feel free to [open an issue][newissue] first,
30 if the change is one that you think
31 needs some discussion.
32
33[readme]: https://gitlab.com/philbooth/bfj/blob/master/README.md
34[authors]: https://gitlab.com/philbooth/bfj/blob/master/AUTHORS
35[newissue]: https://gitlab.com/philbooth/bfj/issues/new
36[issues]: https://gitlab.com/philbooth/bfj/issues
37
Note: See TracBrowser for help on using the repository browser.