Skip to content

Commit

Permalink
🎨 chore: Disabling annoying linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
joebobmiles committed Jul 12, 2021
1 parent 17985b4 commit a4824b2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/patching.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export type Change = [
any
];

// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const getChangeList = (a: any, b: any): Change[] =>
{
const delta = diff(a, b);
Expand Down Expand Up @@ -65,6 +66,7 @@ export const getChangeList = (a: any, b: any): Change[] =>

export const patchSharedType = (
sharedType: Y.Map<any> | Y.Array<any>,
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
update: any
): any =>
{
Expand Down

0 comments on commit a4824b2

Please sign in to comment.