From 35846cdf0f5c05bdccf4c06e260f3cf82feeb2d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1sztor=20D=C3=A1niel?= Date: Tue, 9 Jan 2024 16:30:56 +0100 Subject: [PATCH] Remove eslint references --- functions/.eslintrc.js | 29 ----------------------------- functions/package.json | 6 ------ functions/tsconfig.dev.json | 3 --- 3 files changed, 38 deletions(-) delete mode 100644 functions/.eslintrc.js delete mode 100644 functions/tsconfig.dev.json diff --git a/functions/.eslintrc.js b/functions/.eslintrc.js deleted file mode 100644 index 8b0e579..0000000 --- a/functions/.eslintrc.js +++ /dev/null @@ -1,29 +0,0 @@ -module.exports = { - root: true, - env: { - es6: true, - node: true - }, - extends: [ - "eslint:recommended", - "plugin:import/errors", - "plugin:import/warnings", - "plugin:import/typescript", - "google", - "plugin:@typescript-eslint/recommended" - ], - parser: "@typescript-eslint/parser", - parserOptions: { - project: ["tsconfig.json", "tsconfig.dev.json"], - sourceType: "module" - }, - ignorePatterns: [ - "/lib/**/*" // Ignore built files. - ], - plugins: ["@typescript-eslint", "import"], - rules: { - quotes: ["error", "double"], - "import/no-unresolved": 0, - indent: ["error", 4] - } -}; diff --git a/functions/package.json b/functions/package.json index e259635..9d8329e 100644 --- a/functions/package.json +++ b/functions/package.json @@ -1,7 +1,6 @@ { "name": "functions", "scripts": { - "lint": "eslint --ext .js,.ts .", "build": "tsc", "build:watch": "tsc --watch", "serve": "npm run build && firebase emulators:start --only functions", @@ -19,11 +18,6 @@ "firebase-functions": "^4.2.0" }, "devDependencies": { - "@typescript-eslint/eslint-plugin": "^5.12.0", - "@typescript-eslint/parser": "^5.12.0", - "eslint": "^8.9.0", - "eslint-config-google": "^0.14.0", - "eslint-plugin-import": "^2.25.4", "firebase-functions-test": "^3.0.0", "typescript": "^4.9.0" }, diff --git a/functions/tsconfig.dev.json b/functions/tsconfig.dev.json deleted file mode 100644 index 163ab2f..0000000 --- a/functions/tsconfig.dev.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "include": [".eslintrc.js"] -}