Fix yaml indentation in editorconfig
This commit is contained in:
parent
1102e5c932
commit
3f1dc0a2c7
@ -7,3 +7,6 @@ indent_size = 4
|
|||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.yaml]
|
||||||
|
indent_size = 2
|
||||||
|
@ -3,7 +3,7 @@ package com.github.michaelbull.result
|
|||||||
import kotlin.test.Test
|
import kotlin.test.Test
|
||||||
import kotlin.test.assertEquals
|
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))
|
return Ok(number).and(Err(error))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user