Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 883 Bytes

cred-class-field-name-uppercase-first-char.md

File metadata and controls

36 lines (25 loc) · 883 Bytes

cred-class-field-name-uppercase-first-char

First char in name in credential class must be lowercase.

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

🔧 Run ESLint with --fix option to autofix the issue flagged by this rule.

Examples

❌ Example of incorrect code:

class TestApi implements ICredentialType {
    name = 'MyTestApi';
    displayName = 'My Test API';
    documentationUrl = 'myTest';
}

✅ Example of correct code:

class MyTestApi implements ICredentialType {
    name = 'myTestApi';
    displayName = 'My Test API';
    documentationUrl = 'myTest';
}

Links