From 997745ec11d9dddcc7a33419c21c8079bb28e9c9 Mon Sep 17 00:00:00 2001 From: double beep <38133098+double-beep@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:25:33 +0000 Subject: [PATCH] chore: consistent use of quotes in eslint config --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 0b59d2a..e78d9b7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -37,7 +37,7 @@ export default tseslint.config({ '@typescript-eslint/no-confusing-void-expression': ['error', { ignoreArrowShorthand: true }], '@typescript-eslint/explicit-function-return-type': 'warn', '@typescript-eslint/method-signature-style': 'warn', - '@typescript-eslint/no-unused-expressions': ['error', { 'allowTernary': true }], + '@typescript-eslint/no-unused-expressions': ['error', { allowTernary: true }], '@typescript-eslint/prefer-readonly': 'warn', '@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true }], '@typescript-eslint/prefer-promise-reject-errors': 'off',