Skip to content

Commit

Permalink
feat: forbid identifiers with camelcase pubSub
Browse files Browse the repository at this point in the history
  • Loading branch information
adklempner committed Nov 7, 2023
1 parent 34a25c2 commit f41de98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/no-misused-promises": "error",
"@typescript-eslint/no-explicit-any": "warn"
"@typescript-eslint/no-explicit-any": "warn",
"id-match": ["error", "^(?!.*[pP]ubSub)"]
},
"overrides": [
{
Expand Down

0 comments on commit f41de98

Please sign in to comment.