From 75f13ac6cc452733e444902eefe86610c342970f Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Thu, 9 Apr 2020 20:11:02 +0200 Subject: [PATCH] fix --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 912e652..e84c060 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ module.exports = { // Best Practices https://eslint.org/docs/rules/#best-practices 'array-callback-return': ['error', { allowImplicit: false }], 'block-scoped-var': 'error', - 'class-methods-use-this': 'error', + 'class-methods-use-this': 'off', complexity: ['warn', { max: 10 }], 'consistent-return': ['error', { treatUndefinedAsUnspecified: false }], curly: ['error', 'multi-or-nest', 'consistent'],