Skip to content

Commit

Permalink
add firebase functions
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshj01 committed Dec 21, 2024
1 parent 11fad59 commit 243cb78
Show file tree
Hide file tree
Showing 7 changed files with 6,465 additions and 2,703 deletions.
63 changes: 33 additions & 30 deletions functions/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
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"],
},
};
// 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.
// "/generated/**/*", // Ignore generated files.
// ],
// plugins: [
// "@typescript-eslint",
// "import",
// ],
// rules: {
// "quotes": ["error", "double"],
// "import/no-unresolved": 0,
// "indent": ["error", 2],
// },
// };
1 change: 1 addition & 0 deletions functions/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ typings/

# Node.js dependency directory
node_modules/
*.local
Loading

0 comments on commit 243cb78

Please sign in to comment.