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/function-naming

Language: JavaScript

Severity: Notice

Category: Code Style

Description

Ensure that the function uses camelCase or PascalCase in case it is an Object. Generator functions should always be camelCase.

Non-Compliant Code Examples

function My_Class() {}
function get_value() {}
function* GetValue() {}
function *get_value() {}
function _get_value_() {}
function __get_value() {}

Compliant Code Examples

function MyClass() {}
function getValue() {}
function* getValue() {}
function *getValue() {}
function _getValue() {}
function $__getValue__() {}