From 9157a57fb350bf68f7e28e3a66c6b71641a785f8 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 23 May 2023 11:27:04 +0200 Subject: [PATCH] fix rule, use array for allow list --- backend/.eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/.eslintrc.js b/backend/.eslintrc.js index b09fc1d59..ecb8331d3 100644 --- a/backend/.eslintrc.js +++ b/backend/.eslintrc.js @@ -28,7 +28,7 @@ module.exports = { }, rules: { 'no-console': 'error', - camelcase: ['error', { allow: 'FederationClient_*' }], + camelcase: ['error', { allow: ['FederationClient_*'] }], 'no-debugger': 'error', 'prettier/prettier': [ 'error',