From b3f0998027ecfb3886d7e5ec88242173c73ec8b6 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Wed, 1 Sep 2021 17:39:37 +0100 Subject: [PATCH] Add Cloud Functions ESLint settings --- functions/.eslintrc.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 functions/.eslintrc.js diff --git a/functions/.eslintrc.js b/functions/.eslintrc.js new file mode 100644 index 0000000..973030b --- /dev/null +++ b/functions/.eslintrc.js @@ -0,0 +1,14 @@ +module.exports = { + root: true, + env: { + es6: true, + node: true, + }, + extends: [ + "eslint:recommended", + "google", + ], + rules: { + quotes: ["error", "double"], + }, +};