diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3482eb..9b505d4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-09-28) +## Unreleased (2024-09-29)
@@ -321,6 +321,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
+- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_ - [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_ - [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_ - [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_ diff --git a/base/expand-dimensions/docs/types/test.ts b/base/expand-dimensions/docs/types/test.ts index b83851c6..b9487709 100644 --- a/base/expand-dimensions/docs/types/test.ts +++ b/base/expand-dimensions/docs/types/test.ts @@ -59,6 +59,6 @@ import expandDimensions = require( './index' ); const x = array( [ [ 1, 2 ], [ 3, 4 ] ] ); expandDimensions(); // $ExpectError - expandDimensions( x, ); // $ExpectError + expandDimensions( x ); // $ExpectError expandDimensions( x, 1, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError } diff --git a/base/prepend-singleton-dimensions/docs/types/test.ts b/base/prepend-singleton-dimensions/docs/types/test.ts index f6e36eb8..997fcd87 100644 --- a/base/prepend-singleton-dimensions/docs/types/test.ts +++ b/base/prepend-singleton-dimensions/docs/types/test.ts @@ -59,6 +59,6 @@ import prependSingletonDimensions = require( './index' ); const x = array( [ [ 1, 2 ], [ 3, 4 ] ] ); prependSingletonDimensions(); // $ExpectError - prependSingletonDimensions( x, ); // $ExpectError + prependSingletonDimensions( x ); // $ExpectError prependSingletonDimensions( x, 3, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError }