Metadata

ID: kotlin-best-practices/function-naming

Language: Kotlin

Severity: Notice

Category: Best Practices

Description

No description found

Non-Compliant Code Examples

fun Foo() {}

fun Foo_Bar() {}

fun `Foo Bar`() {}

fun foo_bar() {}

Compliant Code Examples

fun foo() {}

fun fooBar() {}

// Any keyword is allowed when wrapped between backticks
fun `fun`() {}