Update CONTRIBUTING.md
Forgot to commit this
This commit is contained in:
parent
2ac1a87ee9
commit
48f378c3e7
1 changed files with 12 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue