From 5552d39eba6e1523cc172214b74454130f5f1a3b Mon Sep 17 00:00:00 2001 From: Splines Date: Thu, 2 May 2024 00:51:28 +0200 Subject: [PATCH] Fix wrong ESLint semicolon-key value --- .config/eslint.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/eslint.mjs b/.config/eslint.mjs index c7a82fe39..f75205cf7 100644 --- a/.config/eslint.mjs +++ b/.config/eslint.mjs @@ -119,7 +119,7 @@ export default [ "indent": 2, "jsx": false, "quote-props": "always", - "semi": "always", + "semi": true, "brace-style": "1tbs", }).rules, "@stylistic/quotes": ["error", "double", { avoidEscape: true }],