refactor(nodes-base): Apply lint rule node-param-display-name-not-first-position (#4073)

* 👕 Enable rule

* 👕 Apply rule
This commit is contained in:
Iván Ovejero
2022-09-12 09:25:39 +02:00
committed by GitHub
parent f6064ef278
commit 26b07e28f0
7 changed files with 20 additions and 19 deletions

View File

@@ -377,18 +377,18 @@ export class Spotify implements INodeType {
description: 'Get a playlist by URI or ID',
action: 'Get a playlist',
},
{
name: "Get the User's Playlists",
value: 'getUserPlaylists',
description: "Get a user's playlists",
action: "Get a user's playlists",
},
{
name: 'Get Tracks',
value: 'getTracks',
description: "Get a playlist's tracks by URI or ID",
action: "Get a playlist's tracks by URI or ID",
},
{
name: `Get the User's Playlists`,
value: 'getUserPlaylists',
description: "Get a user's playlists",
action: "Get a user's playlists",
},
{
name: 'Remove an Item',
value: 'delete',
@@ -396,7 +396,7 @@ export class Spotify implements INodeType {
action: 'Remove an item from a playlist',
},
{
name: `Search`,
name: 'Search',
value: 'search',
description: 'Search playlists by keyword',
action: 'Search playlists by keyword',
@@ -1322,4 +1322,4 @@ export class Spotify implements INodeType {
return this.prepareOutputData(returnData);
}
}
}