Update CONTRIBUTING.md

Forgot to commit this
This commit is contained in:
Helloyunho 2020-11-06 16:39:03 +09:00
parent 2ac1a87ee9
commit 48f378c3e7
1 changed files with 12 additions and 0 deletions

View File

@ -16,6 +16,18 @@ const example = (): void => {}
```
- Do not make unused variables or unused imports.
- Make a space before a new block, Parentheses, equal, etc. Ex:
```ts
//Here Here
if (true) {
}
// Here Here
const example = ''
```
- Use 'single quote' instead of "double quote".
These are not on standard.js but we want you to follow.