mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Apply more eslint-plugin-n8n-nodes-base autofixable rules (#3243)
* ✏️ Alphabetize rules * 🔖 Update version * ⚡ Update lintfix command * ⚡ Run baseline lintfix * 📦 Update package-lock.json * 👕 Apply `node-param-description-untrimmed` (#3200) * Removing unneeded backticks (#3249) * 👕 Apply node-param-description-wrong-for-return-all (#3253) * 👕 Apply node-param-description-missing-limit (#3252) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-excess-final-period (#3250) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-unencoded-angle-brackets (#3256) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-url-missing-protocol (#3258) * 👕 Apply `node-param-description-miscased-id` (#3254) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-limit (#3257) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261) * 👕 Apply rule * ⚡ Restore lintfix script * ⚡ Restore lintfix script Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
@@ -89,7 +89,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: 'coinId',
|
||||
description: 'Search by coin ID or contract address.',
|
||||
description: 'Search by coin ID or contract address',
|
||||
},
|
||||
{
|
||||
displayName: 'Coin ID',
|
||||
@@ -230,7 +230,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'ethereum',
|
||||
description: 'The id of the platform issuing tokens.',
|
||||
description: 'The ID of the platform issuing tokens',
|
||||
},
|
||||
{
|
||||
displayName: 'Contract address',
|
||||
@@ -252,7 +252,7 @@ export const coinFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'Token\'s contract address.',
|
||||
description: 'Token\'s contract address',
|
||||
},
|
||||
{
|
||||
displayName: 'Contract addresses',
|
||||
@@ -273,7 +273,7 @@ export const coinFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The contract address of tokens, comma-separated.',
|
||||
description: 'The contract address of tokens, comma-separated',
|
||||
},
|
||||
{
|
||||
displayName: 'Base Currency',
|
||||
@@ -398,7 +398,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'Return data for this many days in the past from now.',
|
||||
description: 'Return data for this many days in the past from now',
|
||||
},
|
||||
{
|
||||
displayName: 'Date',
|
||||
@@ -416,7 +416,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The date of data snapshot.',
|
||||
description: 'The date of data snapshot',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
@@ -435,7 +435,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'If all results should be returned or only up to a given limit.',
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
@@ -461,7 +461,7 @@ export const coinFields: INodeProperties[] = [
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
@@ -486,7 +486,7 @@ export const coinFields: INodeProperties[] = [
|
||||
type: 'string',
|
||||
placeholder: 'bitcoin',
|
||||
default: '',
|
||||
description: 'Filter results by comma-separated list of coin ID.',
|
||||
description: 'Filter results by comma-separated list of coin ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Category',
|
||||
@@ -499,7 +499,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'decentralized_finance_defi',
|
||||
description: 'Filter by coin category.',
|
||||
description: 'Filter by coin category',
|
||||
},
|
||||
{
|
||||
displayName: 'Order',
|
||||
@@ -544,14 +544,14 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'Sort results by field.',
|
||||
description: 'Sort results by field',
|
||||
},
|
||||
{
|
||||
displayName: 'Sparkline',
|
||||
name: 'sparkline',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include sparkline 7 days data.',
|
||||
description: 'Include sparkline 7 days data',
|
||||
},
|
||||
{
|
||||
displayName: 'Price Change Percentage',
|
||||
@@ -588,7 +588,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: [],
|
||||
description: 'Include price change percentage for specified times.',
|
||||
description: 'Include price change percentage for specified times',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -660,7 +660,7 @@ export const coinFields: INodeProperties[] = [
|
||||
loadOptionsMethod: 'getExchanges',
|
||||
},
|
||||
default: [],
|
||||
description: 'Filter results by exchange IDs.',
|
||||
description: 'Filter results by exchange IDs',
|
||||
},
|
||||
{
|
||||
displayName: 'Include Exchange Logo',
|
||||
@@ -687,7 +687,7 @@ export const coinFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'trust_score_desc',
|
||||
description: 'Sorts results by the selected rule.',
|
||||
description: 'Sorts results by the selected rule',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -713,7 +713,7 @@ export const coinFields: INodeProperties[] = [
|
||||
name: 'localization',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Set to false to exclude localized languages in response.',
|
||||
description: 'Set to false to exclude localized languages in response',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -739,28 +739,28 @@ export const coinFields: INodeProperties[] = [
|
||||
name: 'community_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include community data.',
|
||||
description: 'Include community data',
|
||||
},
|
||||
{
|
||||
displayName: 'Developer data',
|
||||
name: 'developer_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include developer data.',
|
||||
description: 'Include developer data',
|
||||
},
|
||||
{
|
||||
displayName: 'Localization',
|
||||
name: 'localization',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include all localized languages in response.',
|
||||
description: 'Include all localized languages in response',
|
||||
},
|
||||
{
|
||||
displayName: 'Market data',
|
||||
name: 'market_data',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include market data.',
|
||||
description: 'Include market data',
|
||||
},
|
||||
{
|
||||
displayName: 'Sparkline',
|
||||
@@ -774,7 +774,7 @@ export const coinFields: INodeProperties[] = [
|
||||
name: 'tickers',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Include tickers data.',
|
||||
description: 'Include tickers data',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user