Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chmelevskij <t.chmelevskij@gmail.com>2021-02-14 09:37:03 +0300
committerTomas Chmelevskij <t.chmelevskij@gmail.com>2021-02-14 09:37:03 +0300
commit616c2e796dbf8ccb9cc15091774c1dd03885d3b5 (patch)
treeaefa01a76e1bac8b9d6731e95d8646761d434523 /.eslintrc.js
parentdfbd46c6f1bb574415de4a151b21ad9c3f771016 (diff)
chore: add `semi` rule to the linter and run `--fix`
Adds semicolon to the linter rules.
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 3c0240e2..239fb5fc 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -13,6 +13,7 @@ module.exports = {
},
rules: {
"no-trailing-spaces": "error",
- "eol-last": "error"
+ "eol-last": "error",
+ semi: "error"
}
-};
+}