From f42b717089eb5e474e554ce7018aa498fe2ed07f Mon Sep 17 00:00:00 2001 From: Stefan Eckert Date: Wed, 21 Aug 2019 21:34:14 +0200 Subject: [PATCH] fix(eslint): move eslint rules from file to config --- .eslintrc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 799ae272..4746161b 100755 --- a/.eslintrc +++ b/.eslintrc @@ -5,6 +5,15 @@ "mocha": true }, "rules": { - "comma-dangle": ["error", "only-multiline"] + "comma-dangle": ["error", "only-multiline"], + "class-methods-use-this": "off", + "no-unused-vars": "off", + "no-dupe-keys": "off", + "func-names": "off", + "no-param-reassign": "off", + "no-console": "off", + "getter-return": "off", + "new-cap": "off", + "no-prototype-builtins": "off" } }