From 0175af0abcdb38bbc90a00b292427b94945fc9de Mon Sep 17 00:00:00 2001 From: Baruch Odem Date: Mon, 5 Dec 2022 11:29:42 +0200 Subject: [PATCH] ESLint quote-props: consistent-as-needed --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 860c30ba..8ffcd1aa 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -68,6 +68,7 @@ module.exports = { 'semi': productionError, 'padded-blocks': 'off', 'no-return-assign': 'off', + 'quote-props': ['error', 'consistent-as-needed'], 'no-restricted-imports': ['error', { name: 'electron-log', importNames: ['default'],