Skip to content

Commit

Permalink
Agora broadcasting
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaAbby authored and nate-thegrate committed Sep 13, 2024
1 parent 8467c45 commit 1a31236
Show file tree
Hide file tree
Showing 25 changed files with 11,623 additions and 1,733 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
.history
.svn/
migrate_working_dir/
functions/.env

# IntelliJ related
*.iml
Expand Down
2 changes: 1 addition & 1 deletion firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
]
}
]
}
}
28 changes: 28 additions & 0 deletions functions/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
env: {
es6: true,
node: true,
},
parserOptions: {
"ecmaVersion": 2018,
},
extends: [
"eslint:recommended",
"google",
],
rules: {
"no-restricted-globals": ["error", "name", "length"],
"prefer-arrow-callback": "error",
"quotes": ["error", "double", {"allowTemplateLiterals": true}],
},
overrides: [
{
files: ["**/*.spec.*"],
env: {
mocha: true,
},
rules: {},
},
],
globals: {},
};
Loading

0 comments on commit 1a31236

Please sign in to comment.