Skip to content

Commit

Permalink
feat(event): add ability to create class events using channel info
Browse files Browse the repository at this point in the history
closes #10
  • Loading branch information
Lutonite committed Dec 16, 2023
1 parent ef253b5 commit 8cd1b95
Showing 5 changed files with 477 additions and 40 deletions.
52 changes: 35 additions & 17 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -19,27 +19,31 @@
"prettier/prettier": [
"error"
],
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "^_"
}],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/no-object-literal-type-assertion": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/prefer-interface": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": [
"error"
],
"@typescript-eslint/no-use-before-define": "off",
"class-methods-use-this": "off",
"no-plusplus": "off",
"no-restricted-imports": ["error", {
"paths": [
"firebase-admin",
"firebase-admin/lib/*"
]
}],
"no-restricted-imports": [
"error",
{
"paths": [
"firebase-admin",
"firebase-admin/lib/*"
]
}
],
"no-restricted-syntax": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
@@ -58,12 +62,26 @@
"tsx": "never"
}
],
"import/order": ["error", {
"groups": [["index", "sibling", "parent", "internal", "external", "builtin", "object", "type"]],
"alphabetize": {
"order": "asc"
"import/order": [
"error",
{
"groups": [
[
"index",
"sibling",
"parent",
"internal",
"external",
"builtin",
"object",
"type"
]
],
"alphabetize": {
"order": "asc"
}
}
}]
]
},
"settings": {
"import/resolver": {
Loading

0 comments on commit 8cd1b95

Please sign in to comment.