Skip to content

Commit

Permalink
chore: fix linting errors
Browse files Browse the repository at this point in the history
The ts doc checker does not like having the same interface in a file
with the same method names.
  • Loading branch information
achingbrain committed Oct 6, 2023
1 parent eac17f8 commit a86ceb5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
eg:
before
```ts
interface Foo {
interface MyInterfaceBefore {
bar: (baz: number) => void
}
```
after
```ts
interface Foo {
bar(baz: number): void
interface MyInterfaceAfter {
bar (baz: number): void
}
```

Expand Down Expand Up @@ -1560,7 +1560,7 @@ Co-authored-by: Alex Potsides <[email protected]>

### BREAKING CHANGES

* Update all the deps except webpack.
* Update all the deps except webpack.



Expand Down Expand Up @@ -2247,7 +2247,7 @@ Co-authored-by: Alex Potsides <[email protected]>
### BREAKING CHANGES

* lots of deps updated hidden problems might still exist
* console.* statement are NOW a lint error
* console.* statement are NOW a lint error



Expand Down

0 comments on commit a86ceb5

Please sign in to comment.