Skip to content

Commit

Permalink
Merge pull request #38 from dooboolab/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
hyochan authored Feb 25, 2018
2 parents 71e17e7 + afa634a commit ab0d90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Please follow the Coding conventions as much as possible when contributing your code.
* The indent tab is two spaces.
* The class declaration and the `{}` in curly brackets such as function, if, foreach, for, and while should be in the following format. Also if you installed eslint in vscode or in your code editor, it will help you with linting.
* `{` should be placed in same line and `}` should be placed in next line.
```
for (let i = 0; i < 10; i++) {
...
Expand All @@ -24,6 +25,5 @@ array.forEach((e) => {
...
});
```
* `{` should be placed in same line and `}` should be placed in next line.
* Space before `(` and after `)`.
* **If you find code that does not fit in the coding convention, do not ever try to fix code that is not related to your purpose.**

0 comments on commit ab0d90b

Please sign in to comment.