Alexander Frolov

Results 13 comments of Alexander Frolov

Isn't it wanted behavior? Like we tell developer how it should be named and then the developer needs to correct it everywhere

In save-cloud we found out that construction ``` src = avatar?.let { "/api/$v1/avatar$it" } ?: run { "img/company.svg" } ``` is not fixed into ``` src = avatar?.let { "/api/$v1/avatar$it"...

Here is a peace of code: ``` val foo = (hasExplicitNotUnitReturnType || isFunWithExpressionBody && !hasExplicitUnitReturnType && hasNotExpressionBodyTypes) && !hasReturnKdoc && !isReferenceExpressionWithSameName ``` Here is what NewlinesRule does with this code:...

To my mind it should be something like that: ``` fun test() { val foo = (hasExplicitNotUnitReturnType || isFunWithExpressionBody && !hasExplicitUnitReturnType && hasNotExpressionBodyTypes) && !hasReturnKdoc && !isReferenceExpressionWithSameName } ``` (for...

Will be done in the end of this week as there is no ability to test on prod yet

Partially done with #2260 @Cheshiriks please implement comment deletion and some nice buttons like GitHub has

@akuleshov7 as far as I understand, this one will never be done, as we are not planning to store passwords. If I am wrong, please reopen an issue

There are two different hooks: `useTraslation` and `useTransition`. Are you sure you use the right one?

[This](https://www.npmjs.com/package/react-localization) lib might be useful

You should not use `useRequest` anywhere but on the top level of functional components. That's why we have `useDeferredRequest`, which has something like `useRequest` under the hood. When `useDeferredRequest` is...