refactor: Lint for no unneeded backticks (#5057) (no-changelog)

*  Create rule `no-unneeded-backticks`

* 👕 Enable rule

*  Run rule on `cli`

*  Run rule on `core`

*  Run rule on `workflow`

*  Rule rule on `design-system`

*  Run rule on `node-dev`

*  Run rule on `editor-ui`

*  Run rule on `nodes-base`
This commit is contained in:
Iván Ovejero
2022-12-29 12:20:43 +01:00
committed by GitHub
parent a7868ae77d
commit d9b98fc8be
239 changed files with 772 additions and 714 deletions

View File

@@ -201,13 +201,13 @@ export class Spotify implements INodeType {
action: 'Get new album releases',
},
{
name: `Get Tracks`,
name: 'Get Tracks',
value: 'getTracks',
description: "Get an album's tracks by URI or ID",
action: "Get an album's tracks by URI or ID",
},
{
name: `Search`,
name: 'Search',
value: 'search',
description: 'Search albums by keyword',
action: 'Search albums by keyword',
@@ -270,25 +270,25 @@ export class Spotify implements INodeType {
action: 'Get an artist',
},
{
name: `Get Albums`,
name: 'Get Albums',
value: 'getAlbums',
description: "Get an artist's albums by URI or ID",
action: "Get an artist's albums by URI or ID",
},
{
name: `Get Related Artists`,
name: 'Get Related Artists',
value: 'getRelatedArtists',
description: "Get an artist's related artists by URI or ID",
action: "Get an artist's related artists by URI or ID",
},
{
name: `Get Top Tracks`,
name: 'Get Top Tracks',
value: 'getTopTracks',
description: "Get an artist's top tracks by URI or ID",
action: "Get an artist's top tracks by URI or ID",
},
{
name: `Search`,
name: 'Search',
value: 'search',
description: 'Search artists by keyword',
action: 'Search artists by keyword',
@@ -810,7 +810,7 @@ export class Spotify implements INodeType {
if (operation === 'pause') {
requestMethod = 'PUT';
endpoint = `/me/player/pause`;
endpoint = '/me/player/pause';
responseData = await spotifyApiRequest.call(this, requestMethod, endpoint, body, qs);
@@ -818,7 +818,7 @@ export class Spotify implements INodeType {
} else if (operation === 'recentlyPlayed') {
requestMethod = 'GET';
endpoint = `/me/player/recently-played`;
endpoint = '/me/player/recently-played';
returnAll = this.getNodeParameter('returnAll', i);
@@ -838,13 +838,13 @@ export class Spotify implements INodeType {
} else if (operation === 'currentlyPlaying') {
requestMethod = 'GET';
endpoint = `/me/player/currently-playing`;
endpoint = '/me/player/currently-playing';
responseData = await spotifyApiRequest.call(this, requestMethod, endpoint, body, qs);
} else if (operation === 'nextSong') {
requestMethod = 'POST';
endpoint = `/me/player/next`;
endpoint = '/me/player/next';
responseData = await spotifyApiRequest.call(this, requestMethod, endpoint, body, qs);
@@ -852,7 +852,7 @@ export class Spotify implements INodeType {
} else if (operation === 'previousSong') {
requestMethod = 'POST';
endpoint = `/me/player/previous`;
endpoint = '/me/player/previous';
responseData = await spotifyApiRequest.call(this, requestMethod, endpoint, body, qs);
@@ -860,7 +860,7 @@ export class Spotify implements INodeType {
} else if (operation === 'startMusic') {
requestMethod = 'PUT';
endpoint = `/me/player/play`;
endpoint = '/me/player/play';
const id = this.getNodeParameter('id', i) as string;
@@ -872,7 +872,7 @@ export class Spotify implements INodeType {
} else if (operation === 'addSongToQueue') {
requestMethod = 'POST';
endpoint = `/me/player/queue`;
endpoint = '/me/player/queue';
const id = this.getNodeParameter('id', i) as string;
@@ -886,7 +886,7 @@ export class Spotify implements INodeType {
} else if (operation === 'resume') {
requestMethod = 'PUT';
endpoint = `/me/player/play`;
endpoint = '/me/player/play';
responseData = await spotifyApiRequest.call(this, requestMethod, endpoint, body, qs);
@@ -894,7 +894,7 @@ export class Spotify implements INodeType {
} else if (operation === 'volume') {
requestMethod = 'PUT';
endpoint = `/me/player/volume`;
endpoint = '/me/player/volume';
const volumePercent = this.getNodeParameter('volumePercent', i) as number;
@@ -1269,7 +1269,7 @@ export class Spotify implements INodeType {
if (operation === 'getFollowingArtists') {
requestMethod = 'GET';
endpoint = `/me/following`;
endpoint = '/me/following';
returnAll = this.getNodeParameter('returnAll', i);