Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Marks committed Jul 8, 2022
1 parent 343c697 commit 17da647
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,26 +212,26 @@ type CursorWithSkipOptions =
| number
| FilterPredicate
| {
includeComments?: boolean
filter?: FilterPredicate
skip?: number
}
includeComments?: boolean
filter?: FilterPredicate
skip?: number
}

type CursorWithCountOptions =
| number
| FilterPredicate
| {
includeComments?: boolean
filter?: FilterPredicate
count?: number
}
includeComments?: boolean
filter?: FilterPredicate
count?: number
}

interface ReportDescriptorOptionsBase {
data?: { [key: string]: string }

fix?:
| null
| ((fixer: RuleFixer) => null | Fix | IterableIterator<Fix> | Fix[])
| null
| ((fixer: RuleFixer) => null | Fix | IterableIterator<Fix> | Fix[])
}

type SuggestionDescriptorMessage = { desc: string } | { messageId: string }
Expand Down

0 comments on commit 17da647

Please sign in to comment.