Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow
any
args and referencing functions by property name (#232)
Disables two rules: `@typescript-eslint/no-unsafe-argument` - this prevents passing vars with an `any` type to functions. Unfortunately we still deal with untyped modules so this will happen. `@typescript-eslint/unbound-method` - this prevents referencing functions without invoking them. We need to disable this to do things like pass functions passed as part of an options object on to other functions.
- Loading branch information