Parameter name should use camelCase

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: typescript-code-style/parameter-name

Language: TypeScript

Severity: Notice

Category: Code Style

Description

Ensure that parameter names use camelCase and not snake_case or PascalCase.

Non-Compliant Code Examples

const a = { setValue(NewValue, event_info?) {} }
class A { setValue(NewValue, event_info) {} }
function setValue(NewValue, event_info) {}
const a = function(NewValue, event_info) {}

Compliant Code Examples

const a = { getValue() {} }
class A { setValue(newValue) {} }
class B { setValue(md5, valid5String) {} }
class B { setValue(_, valid5String) {} }

async.doSomething(nothing, (n, _cb) => {

}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis