From 8c131073730ec684145c2cc8ee8d6b39bbe9278d Mon Sep 17 00:00:00 2001 From: MCMXC <16797721+mcmxcdev@users.noreply.github.com> Date: Sun, 23 Jul 2023 20:08:52 -0600 Subject: chore: improve lint setup - update eslint config - merged eslint rules for JS and TS to avoid duplicates - extended stricter lint ruleset from typescript-eslint - corrected wrong setup for certain eslint rulesets - opt in to reportUnusedDisableDirectives config option - fix or disable a lot of lint issues throughout codebase - remove trailingComma: all from prettier config which is default in prettier v3 - add volta configuration to package.json to autoload correct node and pnpm versions - upgrade all eslint and prettier related dependencies to latest - remove config options from settings.json which are default anyways - remove config options from settings.json which are outdated/unknown - set up prettier as default formatter in settings.json --- src/stores/UserStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores/UserStore.ts') diff --git a/src/stores/UserStore.ts b/src/stores/UserStore.ts index 7ba8f4222..0616acdad 100644 --- a/src/stores/UserStore.ts +++ b/src/stores/UserStore.ts @@ -210,7 +210,7 @@ export default class UserStore extends TypedStore { currency, }): Promise { // TODO: [TS DEBT] Need to find a way proper to implement promise's then and catch in request class - // @ts-ignore + // @ts-expect-error Fix me const authToken = await this.signupRequest.execute({ firstname, lastname, @@ -400,7 +400,7 @@ export default class UserStore extends TypedStore { const params = new URLSearchParams(parsedUrl.search.slice(1)); // TODO: Remove the neccesity for `as string` - params.append('authToken', this.authToken as string); + params.append('authToken', this.authToken!); return `${parsedUrl.origin}${parsedUrl.pathname}?${params.toString()}`; } -- cgit v1.2.3-70-g09d2