mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 01:05:54 -05:00
20d12b4c7a
Remove KOTLIN_ANDROID because ktlint handles that case by reading a configuration setting in .editorconfig. Bumps [com.pinterest.ktlint:ktlint-cli](https://github.com/pinterest/ktlint) from 0.47.1 to 1.1.0. - [Release notes](https://github.com/pinterest/ktlint/releases) - [Changelog](https://github.com/pinterest/ktlint/blob/master/CHANGELOG.md) - [Commits](https://github.com/pinterest/ktlint/compare/0.47.1...1.1.0) --- updated-dependencies: - dependency-name: com.pinterest.ktlint:ktlint-cli dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8 lines
114 B
Kotlin
8 lines
114 B
Kotlin
@file:Suppress("ktlint:standard:filename")
|
|
|
|
fun main() {
|
|
val n = "World"
|
|
val v = "Hello, $n!"
|
|
|
|
println(v)
|
|
}
|