Method name should use camelCase

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: javascript-code-style/method-name

Language: JavaScript

Severity: Notice

Category: Code Style

Description

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

Non-Compliant Code Examples

const a = { GetValue() {} }
class A { set_value() {} }
class A { *set_value() {} }
class A { #set_value() {} }
class A { #SetValue() {} }

Compliant Code Examples

const a = { getValue() {} }
class A { setValue() {} }
class A { #fooBla() {} }
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