We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c5ce72 commit 4579468Copy full SHA for 4579468
src/commonMain/kotlin/io/github/optimumcode/json/schema/internal/hostname/Punycode.kt
@@ -53,7 +53,12 @@ internal object Punycode {
53
* @return true if the range of [string] from [pos] to [limit] was valid and decoded successfully.
54
* Otherwise, the decoding failed.
55
*/
56
- @Suppress("detekt:CyclomaticComplexMethod", "detekt:ReturnCount", "detekt:LongMethod")
+ @Suppress(
57
+ "detekt:CyclomaticComplexMethod",
58
+ "detekt:ReturnCount",
59
+ "detekt:LongMethod",
60
+ "detekt:NestedBlockDepth",
61
+ )
62
private fun StringBuilder.decodeLabel(
63
string: String,
64
pos: Int,
0 commit comments