Parameter name should use camelCase
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: javascript-code-style/parameter-name
Language: JavaScript
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) => {
}
Seamless integrations. Try Datadog Code Analysis