fix: wrong fantomas glob pattern#219
Merged
halcwb merged 2 commits intoinformedica:masterfrom Mar 24, 2026
Merged
Conversation
Contributor
Greptile SummaryThis PR fixes two Fantomas configuration issues that were causing
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Source File] --> B{File extension?}
B -- ".fsx" --> C[".fantomasignore: *.fsx"]
C --> D[Skip formatting]
B -- ".fs" --> E{In ignore list?}
E -- "tests/.../Tests.fs" --> D
E -- "Other .fs file" --> F[".editorconfig: [*.fs] section"]
F --> G[Apply Fantomas settings\naligned brackets, aligned signatures,\nmax blank lines, etc.]
G --> H[Format file]
Reviews (1): Last reviewed commit: "Merge branch 'master' into master" | Re-trigger Greptile |
github-actions bot
pushed a commit
to halcwb/GenPRES
that referenced
this pull request
Mar 24, 2026
- Add FhirExpectoTests.fsx: Expecto test scaffolding for the FHIR bidirectional translation layer — 6 test suites covering FhirSystems constants, RouteMapping round-trips, PeriodUnitMapping round-trips, inferDoseType logic, and toFhirMedicationRequest / fromFhirMedicationRequest round-trips for all 11 scenarios defined in ImplementationPlan.fsx - Update CHANGELOG [Unreleased] with 24 March 2026 commits: FHIR implementation plan script (PR informedica#215), UI interactions improvements (PR informedica#216), fix select-all in treatment plan (PR informedica#217), Fantomas exclusions fix (PR informedica#218, informedica#219) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Mar 24, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix wrong fantomas setting resulting in a lot of unformatted files.