From 9185c0bcc679e1f28d20d64e1c8e2e39b64d51b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 2 Jul 2019 16:57:15 +0200 Subject: [PATCH] Add JavaScript rule for semi colons While I personally prefer the "never" option for this rule, we haven't discussed which guideline to follow, so for now I'm applying the rule CoffeeScript used when generating these files. --- .eslintrc.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.eslintrc.yml b/.eslintrc.yml index c50122ba3..aefbf90df 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -49,6 +49,9 @@ rules: - error - double - avoidEscape: true + semi: + - error + - always semi-spacing: error space-before-blocks: error space-before-function-paren: