Jindřich Ivánek

Results 13 comments of Jindřich Ivánek

@isaacabraham It is, at least when used after `let =`. It is side effect of pattern match expression being multiline now.

Forge already have command for move file https://github.com/fsharp-editing/Forge/wiki/move-file. Maybe we can just call Forge, or use it as a lib.

So, is there agreement we want to use Forge? Does Forge support properties in file paths (see #61)?

@sparebytes long time that packages was update here. `prerelease` should be definitely removed, it is there because FAKE 5 was in prerelease back then. Ofc, best thing will be to...

It works for me: ``` dotnet run -p src/Mechanic.CommandLine/ ../fulma-demo/src/Demo.fsproj TopologicalOrder ["C:\dev\github\fulma-demo\src\Import\Fable.Import.Showdown.fs"; "C:\dev\github\fulma-demo\src\Import\Fable.Import.Lowdb.fs"; "C:\dev\github\fulma-demo\src\Global\Render.fs"; "C:\dev\github\fulma-demo\src\Global\Logger.fs"; "C:\dev\github\fulma-demo\src\Global\Router.fs"; "C:\dev\github\fulma-demo\src\Global\Database.fs"; "C:\dev\github\fulma-demo\src\Question\Index\Types.fs"; "C:\dev\github\fulma-demo\src\Question\Index\Rest.fs"; "C:\dev\github\fulma-demo\src\Question\Index\State.fs"; "C:\dev\github\fulma-demo\src\Question\Index\View.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Answer\Types.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Answer\Rest.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Answer\State.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Answer\View.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Types.fs"; "C:\dev\github\fulma-demo\src\Question\Show\Rest.fs"; "C:\dev\github\fulma-demo\src\Question\Show\State.fs"; "C:\dev\github\fulma-demo\src\Question\Show\View.fs"; "C:\dev\github\fulma-demo\src\Question\Create\Types.fs";...

@MangelMaxime Yes, it takes source files in project as input, reorder them and update fsproj with new order. For me it behaves as expected. We probably want to support adding...

I volunteer in graph knowledge area :) If we have all symbols declared and used in all files, then we can create directed graph where A -> B means that...

Yes, its doable in simple situations like this, but there is problematic cases. For example consider this: ```csharp if(x){ SomeAction(); } else { return f; } return 0; ``` This...

* I agree it is doable, but there is tricky cases. * I now see it is doable for `if`s with some reordering of blocks. * For `for, while` it...