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
When you run dotnet fantomas right now, you get the Input path is missing... message.
Is that a good message or should the help be shown instead?
Next, if you run dotnet fantomas foo where the folder foo doesn't exist, you get that same Input path is missing... message. This could be improved by No file or folder "foo" found on disk or something similar.
I recall an example where a path with Windows slashes was used on a Linux VM using the --check flag and it wasn't all that obvious that nothing happened.
The exit code is also 0 when you enter dotnet fantomas foo --check ; $LASTEXITCODE (in PowerShell).
This should be 1 as it is without the --check flag.
The text was updated successfully, but these errors were encountered:
When you run
dotnet fantomas
right now, you get theInput path is missing...
message.Is that a good message or should the help be shown instead?
Next, if you run
dotnet fantomas foo
where the folderfoo
doesn't exist, you get that sameInput path is missing...
message. This could be improved byNo file or folder "foo" found on disk
or something similar.I recall an example where a path with Windows slashes was used on a Linux VM using the
--check
flag and it wasn't all that obvious that nothing happened.The exit code is also
0
when you enterdotnet fantomas foo --check ; $LASTEXITCODE
(in PowerShell).This should be
1
as it is without the--check
flag.The text was updated successfully, but these errors were encountered: