summaryrefslogtreecommitdiff
path: root/js/url_search_params.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-10 04:30:38 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-09 12:30:38 -0500
commit034e2cc02829c9244b32232074c7a48af827a2fb (patch)
treebade01606a1ee076c1f753ce99c97ddb1e4edf30 /js/url_search_params.ts
parent8c7a12d1b258f0ef5ab27f49c424331d43e8d97f (diff)
Migrate from tslint to eslint for linting (#1905)
Diffstat (limited to 'js/url_search_params.ts')
-rw-r--r--js/url_search_params.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/url_search_params.ts b/js/url_search_params.ts
index dec7ca869..ac4ac01b1 100644
--- a/js/url_search_params.ts
+++ b/js/url_search_params.ts
@@ -175,9 +175,9 @@ export class URLSearchParams {
*/
forEach(
callbackfn: (value: string, key: string, parent: URLSearchParams) => void,
- // tslint:disable-next-line:no-any
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
thisArg?: any
- ) {
+ ): void {
requiredArguments("URLSearchParams.forEach", arguments.length, 1);
if (typeof thisArg !== "undefined") {