From 0f88ebebe8efcfb2138c9f6093601577608b2f83 Mon Sep 17 00:00:00 2001 From: Kevin Partington Date: Mon, 2 Jan 2023 23:41:22 -0600 Subject: [PATCH] Chore: Add object-curly-newline to ESLint config --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 10d7f77a..805712b6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -137,6 +137,7 @@ "no-warning-comments": "error", "no-whitespace-before-property": "error", "no-with": "error", + "object-curly-newline": ["error", { "consistent": true }], "object-curly-spacing": ["error", "always"], "object-property-newline": "error", "operator-assignment": ["error", "always"],