Osip Fatkullin
Osip Fatkullin
IDEA 2021.1.1 I'm trying to open a changed file but getting an exception. ```stacktrace java.lang.Throwable: Assertion failed at com.intellij.openapi.diagnostic.Logger.assertTrue(Logger.java:197) at com.intellij.openapi.diagnostic.Logger.assertTrue(Logger.java:206) at com.intellij.openapi.fileEditor.impl.text.TextEditorComponent.(TextEditorComponent.java:76) at com.intellij.openapi.fileEditor.impl.text.PsiAwareTextEditorImpl$PsiAwareTextEditorComponent.(PsiAwareTextEditorImpl.java:107) at com.intellij.openapi.fileEditor.impl.text.PsiAwareTextEditorImpl.createEditorComponent(PsiAwareTextEditorImpl.java:85) at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl.(TextEditorImpl.java:52) at...
It would be nice to have possibility to install Amnezia for macOS via [Homebrew](https://brew.sh/index_ru).
IDEA provides "Unified viewer" mode for diffs, but diffs opened from CodeStream always use "Side-by-side viewer". It would be great to be able to use "Unified viewer" for CodeStream reviews...
**What is your use-case and why do you need this feature?** Use-cases for `U[X]Array`, are similar as for `[X]Array`. **Describe the solution you'd like** Add serializers for `UByteArray`, `UShortArray`, `UIntArray`...
## Expected Behavior `@param` is not required for non-public parameters ## Observed Behavior `@param` or `@property` is required for all parameters if: - both constructor and parameter are not public...
> @BraisGabin said: > We could extend IgnoredReturnValue and make it receive a list of types from the configuration. The rule will flag any call to a function that returns...
## Expected Behavior of the rule ```kotlin val profileFlow: Flow = ... fun observeProfile() { profileFlow.onEach { ... } // FlowNotCollected: launchIn, collect or another function is not called }...
## Expected Behavior ```kotlin token?.let { addHeader("X-Access-Token", it) } // Compilant, it's ok token?.let { addHeader("X-Access-Token", token) } // Should be also compliant, but it isn't ``` Variable usage inside...
### Feature description Hello! I'm the author of [Mimic](https://github.com/EndlessCodeGroup/Mimic). Mimic is an abstraction layer between RPG plugins providing levels, classes, or items functionality (like Vault does it for money). I...
I've created some extensions for my project. Maybe it should be in KTP? ```kotlin /** Shorter call of `bind(...).toInstance(...)`. Class of binding retrieved from [T]. */ inline fun Module.bindInstance(instance: T)...