From 2918ba9180c25f9f7e5e784f04a7c7d77905355b Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Fri, 6 Oct 2023 13:35:44 +0100 Subject: [PATCH] chore: fix linting errors (#1380) The ts doc checker does not like having the same interface in a file with the same method names. --- CHANGELOG.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c74f4d46a..991278189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 } ``` @@ -1560,7 +1560,7 @@ Co-authored-by: Alex Potsides ### BREAKING CHANGES -* Update all the deps except webpack. +* Update all the deps except webpack. @@ -2247,7 +2247,7 @@ Co-authored-by: Alex Potsides ### 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