From 6159bfa60d59947a6cd4a4f6525dc9572de89907 Mon Sep 17 00:00:00 2001 From: Alex Komoroske Date: Sun, 29 Oct 2023 13:57:47 -0700 Subject: [PATCH] Switch to using the same eslintrc ro the whole project. Part of #646. This makes them show up in VSCode while editing. --- .eslintignore | 2 +- functions/.eslintrc.json | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 functions/.eslintrc.json diff --git a/.eslintignore b/.eslintignore index bac5d5be..5cd33bd0 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,3 @@ build/* src/**/*.js -functions/* \ No newline at end of file +functions/lib/* \ No newline at end of file diff --git a/functions/.eslintrc.json b/functions/.eslintrc.json deleted file mode 100644 index dbbd1bfa..00000000 --- a/functions/.eslintrc.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "root": true, - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "tsconfig.json", - "sourceType": "module" - }, - "env": { - "node": true, - "es6": true - }, - "ignorePatterns": [ - "/lib/**/*" - ], - "extends": "eslint:recommended", - "rules": { - "no-unused-vars": [ - "error", - { - "varsIgnorePattern": "^_", - "argsIgnorePattern": "^_" - } - ] - } -}