Credential class name must mention OAuth2
if the credential is OAuth2.
📋 This rule is part of the plugin:n8n-nodes-base/credentials
config.
❌ 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',
];
}