From 062df390bea0f9e0f443405f8512b6ded7658b33 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 16 Sep 2022 23:00:18 -0500 Subject: [PATCH] Make ESLint fail hard on semi-colon usage --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index a95f5e8..fd53136 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,6 +10,8 @@ "parserOptions": { "ecmaVersion": 12 }, - "rules": {}, + "rules": { + "semi": ["error", "never"] + }, "ignorePatterns": ["/dist/", "/src/fixtures/", "/src/blank-configurations/"] }