From 48f378c3e7f8afd3ece3c0e39e70e48080578bd3 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Fri, 6 Nov 2020 16:39:03 +0900 Subject: [PATCH] Update CONTRIBUTING.md Forgot to commit this --- CONTRIBUTING.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f83bd91..b7603a7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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.