Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 869 Bytes

cred-class-name-missing-oauth2-suffix.md

File metadata and controls

36 lines (26 loc) · 869 Bytes

cred-class-name-missing-oauth2-suffix

Credential class name must mention OAuth2 if the credential is OAuth2.

📋 This rule is part of the plugin:n8n-nodes-base/credentials config.

Examples

❌ Example of incorrect code:

class MyTestApi implements ICredentialType {
	name = "myTestOAuth2Api";
	displayName = "My Test OAuth2 API";
	documentationUrl = "myTest";
	extends = ["oAuth2Api"];
}

✅ Example of correct code:

class MyTestOAuth2Api implements ICredentialType {
	name = "myTestOAuth2Api";
	displayName = "My Test OAuth2 API";
	documentationUrl = "myTest";
	extends = ["oAuth2Api"];
}

Links