From ab8ea15a52067804c2049624c03ae020a5e3f1ed Mon Sep 17 00:00:00 2001 From: Jonas Gloning <34194370+jonasgloning@users.noreply.github.com> Date: Tue, 14 Feb 2023 21:00:21 +0100 Subject: [PATCH] build: remove custom eslint rules Some were incompatible with prettier --- .eslintrc.json | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 5d9589a..a106a42 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,31 +7,10 @@ ], "env": { "node": true, - "es6": true, - "mocha": true + "es6": true }, "parserOptions": { "ecmaVersion": 2018, "sourceType": "module" - }, - "rules": { - "no-var": "error", - "no-console": "off", - "@typescript-eslint/camelcase": "off", - "@typescript-eslint/interface-name-prefix": "off", - "@typescript-eslint/member-delimiter-style": [ - "error", - { - "multiline": { - "delimiter": "semi", - "requireLast": true - }, - "singleline": { - "delimiter": "semi", - "requireLast": true - } - } - ], - "@typescript-eslint/explicit-function-return-type": "off" } }