Method name should use camelCase

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: typescript-code-style/method-name

Language: TypeScript

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