Skip to content

Commit

Permalink
⬆️ (deps) lint@2024-07-14 📏 [skip ci] (#1525)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jul 14, 2024
1 parent f7986f1 commit 7ff0437
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 180 deletions.
10 changes: 5 additions & 5 deletions config/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
},
"dependencies": {
"@babel/core": "7.24.8",
"@babel/eslint-parser": "7.24.7",
"@eslint/compat": "1.1.0",
"@babel/eslint-parser": "7.24.8",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.6.0",
"@eslint/js": "9.7.0",
"@next/eslint-plugin-next": "14.2.4",
"@typescript-eslint/parser": "7.16.0",
"eslint": "9.6.0",
"eslint": "9.7.0",
"eslint-config-next": "14.2.4",
"eslint-config-turbo": "2.0.6",
"eslint-plugin-import-x": "3.0.1",
Expand All @@ -44,7 +44,7 @@
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-perfectionist": "2.11.0",
"eslint-plugin-playwright": "1.6.2",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react": "7.34.4",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-tailwindcss": "3.17.4",
Expand Down
2 changes: 1 addition & 1 deletion config/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"semantic-release:dry": "semantic-release --dry-run"
},
"dependencies": {
"prettier": "3.3.2",
"prettier": "3.3.3",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-tailwindcss": "0.6.5"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/spotify/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class Client {
private async accessTokenAsHeaders(accessToken?: string) {
const headers: Record<string, string> = {}
const accessTokenValue =
accessToken ?? this.#accessToken.length > 1
(accessToken ?? this.#accessToken.length > 1)
? this.#accessToken
: await this.getAccessToken()
if (accessTokenValue !== undefined) {
Expand Down
Loading

0 comments on commit 7ff0437

Please sign in to comment.