From ab18bbc7d8a4f9ab503a5c2bb663a49dc7a68111 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Fri, 7 Apr 2023 21:43:00 +0200 Subject: [PATCH] chore(tooling): add eslint rule curly Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- tooling/eslint-config/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tooling/eslint-config/index.js b/tooling/eslint-config/index.js index 50cee378..94095f4e 100644 --- a/tooling/eslint-config/index.js +++ b/tooling/eslint-config/index.js @@ -2,6 +2,7 @@ module.exports = { extends: ['@antfu', 'plugin:prettier/recommended', 'turbo'], plugins: ['prettier'], rules: { + curly: ['error', 'all'], 'vue/no-setup-props-destructure': 0, 'no-console': ['error', { allow: ['warn', 'error'] }], 'unused-imports/no-unused-vars': 0,