You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ALWAYS wrap `ULong` numbers with `USat` in arithmetic operations, to guard against overflows
208
208
- PREFER to use one-liners with `run { }` when applicable, e.g. `override fun someCall(value: String) = run { this.value = value }`
209
209
- ALWAYS add imports instead of inline fully-qualified names
210
+
- NEVER use file-level `@file:Suppress(...)` annotations; ALWAYS add `@Suppress(...)` as close as possible to the erroring lines (function, property, or statement level)
0 commit comments