-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start using fantomas to validate code submissions with CI #581
Comments
Is there a way to have it respect blank lines? I tend not to use Fantomas because it didn't respect paragraph breaks last time I checked. |
I did not get your point @reinux. You mention in comments, right? In my experience it does not touch comments, but just to make sure, can you please provide an example for what you have in mind? Other than that, considering that this has the potential to influence all the codebase, I think it's worth adding it only to the samples along with the tests first. |
Stuff like this: let arrange itemWidth (getSize: 'i -> int * int) (canvasWidth, canvasHeight) (items: 'i list) : Rect list =
let rec loop (left, top) bottom items rects =
match items with
| x :: xs ->
let width, height = getSize x
let ratio = (float width / float height)
let width, height = itemWidth, int (float height / ratio)
// inserted empty line
if top + height > canvasHeight then
rects
elif left + width > canvasWidth then
if bottom + height > canvasHeight then
rects
else
let rect =
{ left = 0
top = bottom
width = width
height = height }
// inserted empty line
loop (0, bottom) (bottom + height) xs (rect :: rects)
else
let rect =
{ left = left
top = top
width = width
height = height }
// inserted empty line
loop (left + rect.left, top) (max bottom (top + rect.height)) xs (rect :: rects)
| [] -> rects
loop (0, 0) 0 items [] |> List.rev I have my code arranged into paragraphs that indicate conceptually related code, but Fantomas places blank lines between let bindings and return expressions, which makes the deliberate paragraph groupings harder to spot. Sorry, I didn't mean for this to be a Fantomas question on the Giraffe repo, but I was just thinking that it would be nice to configure that (if possible) if Giraffe gets the Fantomas treatment. |
Got it now, thanks for the clarification. I'm not sure if it's possible but I'll take a look. |
We can configure Fantomas using some |
Here are my personal tastes for Fantomas with editorconfig |
Description:
In order to keep the code properly formatted we could leverage fantomas, by running this tool on CI.
The text was updated successfully, but these errors were encountered: