Fix yaml indentation in editorconfig

This commit is contained in:
Michael Bull 2024-03-02 17:57:55 +00:00
parent 1102e5c932
commit 3f1dc0a2c7
2 changed files with 4 additions and 1 deletions

View File

@ -7,3 +7,6 @@ indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.yaml]
indent_size = 2

View File

@ -3,7 +3,7 @@ package com.github.michaelbull.result
import kotlin.test.Test
import kotlin.test.assertEquals
private inline fun produce(number: Int, error: String): Result<Int, String> {
private fun produce(number: Int, error: String): Result<Int, String> {
return Ok(number).and(Err(error))
}