Skip to content

Commit

Permalink
Apply cred-class-name-missing-oauth2-suffix (#3636)
Browse files Browse the repository at this point in the history
  • Loading branch information
agobrech authored Jul 1, 2022
1 parent 3e8dc35 commit f4ab14e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ module.exports = {
'n8n-nodes-base/cred-filename-against-convention': 'error',
'n8n-nodes-base/cred-class-field-display-name-missing-oauth2': 'error',
'n8n-nodes-base/cred-class-field-name-missing-oauth2': 'error',
'n8n-nodes-base/cred-class-name-missing-oauth2-suffix': 'error',
},
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ const scopes = [
'crm.schemas.deals.read',
];

// eslint-disable-next-line n8n-nodes-base/cred-class-name-missing-oauth2-suffix
export class HubspotDeveloperApi implements ICredentialType {
// eslint-disable-next-line n8n-nodes-base/cred-class-field-name-missing-oauth2
name = 'hubspotDeveloperApi';
// eslint-disable-next-line n8n-nodes-base/cred-class-field-display-name-missing-oauth2
// eslint-disable-next-line n8n-nodes-base/cred-class-field-display-name-missing-oauth2
displayName = 'HubSpot Developer API';
documentationUrl = 'hubspot';
extends = [
Expand Down

0 comments on commit f4ab14e

Please sign in to comment.