From 6c552f86c69b222e094bf22b92fb1eaa7110f7ab Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Mon, 2 Dec 2024 06:21:32 -0500 Subject: [PATCH] added last lint rule for this update --- eslint.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index c402901e..d1579a37 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -25,6 +25,9 @@ export default [ 'keyword-spacing': ["error", { "before": true, "after": true }], 'consistent-return': "error", 'semi': ["error", "always"], + 'curly': ["error"], + 'no-eval': ["error"], + 'linebreak-style': ["error", "unix"], 'arrow-spacing': ["error", { "before": true, "after": true }] }, },