Skip to content

refactor: remove spotify code

Sign in for the full log view
GitHub Actions / eslint failed Jul 1, 2024 in 1s

reviewdog [eslint] report

reported by reviewdog 🐶

Findings (2)

src/commands/play.ts|118 col 13| 'query' is never reassigned. Use 'const' instead.
src/events/web/update.ts|90 col 21| 'query' is never reassigned. Use 'const' instead.

Filtered Findings (0)

Annotations

Check failure on line 118 in src/commands/play.ts

See this annotation in the file changed.

@github-actions github-actions / eslint

[eslint] src/commands/play.ts#L118 <prefer-const>(https://eslint.org/docs/latest/rules/prefer-const)

'query' is never reassigned. Use 'const' instead.
Raw output
{"ruleId":"prefer-const","severity":2,"message":"'query' is never reassigned. Use 'const' instead.","line":118,"column":13,"nodeType":"Identifier","messageId":"useConst","endLine":118,"endColumn":18,"fix":{"range":[4035,4086],"text":"const query = interaction.options.getString('query');"}}

Check failure on line 90 in src/events/web/update.ts

See this annotation in the file changed.

@github-actions github-actions / eslint

[eslint] src/events/web/update.ts#L90 <prefer-const>(https://eslint.org/docs/latest/rules/prefer-const)

'query' is never reassigned. Use 'const' instead.
Raw output
{"ruleId":"prefer-const","severity":2,"message":"'query' is never reassigned. Use 'const' instead.","line":90,"column":21,"nodeType":"Identifier","messageId":"useConst","endLine":90,"endColumn":26,"fix":{"range":[3762,3785],"text":"const query = item.value;"}}