From f277db31804310720d7a516deee6cdaeab0f6a74 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Fri, 17 Sep 2021 12:54:48 -0600 Subject: [PATCH] chore: standardize eslint (#70) * chore: standardize eslint * chore: standardize eslint * chore: update config --- .eslintrc => .eslintrc.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) rename .eslintrc => .eslintrc.json (77%) diff --git a/.eslintrc b/.eslintrc.json similarity index 77% rename from .eslintrc rename to .eslintrc.json index d7ebadbc..fa6b29d7 100644 --- a/.eslintrc +++ b/.eslintrc.json @@ -15,13 +15,12 @@ "prefer-arrow-callback": 2, "@typescript-eslint/ban-ts-comment": 0, "@typescript-eslint/ban-types": 1, - "@typescript-eslint/no-empty-function": 1, - "@typescript-eslint/triple-slash-reference": 1, - "@typescript-eslint/class-name-casing": 0 + "@typescript-eslint/no-empty-function": 1 }, "env": { "browser": true, "es6": true, "jest/globals": true - } + }, + "globals": { "google": "readonly" } }