We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7faaaf7 commit 55ba1bbCopy full SHA for 55ba1bb
CONTRIBUTING.md
@@ -24,4 +24,24 @@ you can make a pull-request to the `develop` branch.
24
If you are fixing a bug in a `release` version, you need to branch of `release/<version>`.
25
Once the bug is fixed, you can make a pull-request to the `release<version>` branch.
26
27
+### Making a new feature
28
+
29
+You have to create a new branch from `develop`
30
31
+```
32
+$git checkout develop
33
+$git checkout -b feature/my-new-feature
34
35
36
+When your new feature is finished, edit the `CHANGELOG` file and add a line explaining your new feature.
37
+Then make a pull-request to de `develop` branch.
38
39
40
+## Syntax
41
42
+Before making a pull request, ensure that syntax style is correct. You can check this by running the line:
43
44
45
+grunt checksyntax
46
47
0 commit comments