Fantomas.Extras
4.4.0
This library aims at formatting F# source files based on a given configuration.
Fantomas will ensure correct indentation and consistent spacing between elements in the source files.
Some common use cases include
(1) Reformatting a code base to conform a universal page width
(2) Converting legacy code from verbose syntax to light syntax
(3) Formatting auto-generated F# signatures.
See the version list below for details.
Install-Package Fantomas.Extras -Version 4.4.0
dotnet add package Fantomas.Extras --version 4.4.0
<PackageReference Include="Fantomas.Extras" Version="4.4.0" />
paket add Fantomas.Extras --version 4.4.0
#r "nuget: Fantomas.Extras, 4.4.0"
// Install Fantomas.Extras as a Cake Addin
#addin nuget:?package=Fantomas.Extras&version=4.4.0
// Install Fantomas.Extras as a Cake Tool
#tool nuget:?package=Fantomas.Extras&version=4.4.0
Release Notes
Revisit SynExpr.IfThenElse. [#1258](https://github.com/fsprojects/fantomas/issues/1258)
Target netcoreapp3.1 for fantomas-tool.
Stricter trivia selection. [#1304](https://github.com/fsprojects/fantomas/pull/1304)
Fix Idempotency problem when function argument's type annotation requires brackets. [#1470](https://github.com/fsprojects/fantomas/issues/1470)
Fix Inconsistency about when fantomas decides to split `()` (unit) to the next line. [#1469](https://github.com/fsprojects/fantomas/issues/1469)
Fix Unexpected newline between hash directives. [#1464](https://github.com/fsprojects/fantomas/issues/1464)
Fix Oscillating newlines in custom computation expression. [#1463](https://github.com/fsprojects/fantomas/issues/1463)
Fix Violation of "avoid name-sensitive alignments" clause. [#1422](https://github.com/fsprojects/fantomas/issues/1422)
Fix Incorrectly combines tokens when formatting. [#1407](https://github.com/fsprojects/fantomas/issues/1407)
Fix string interpolation with multi-line string causes literal part to change. [#1451](https://github.com/fsprojects/fantomas/issues/1451)
Fix `when` clause in try-with block gets split and causes compiler warnings about indentation. [#1406](https://github.com/fsprojects/fantomas/issues/1406)
Fix Long line breaks match. [#1403](https://github.com/fsprojects/fantomas/issues/1403)
Fix Long line causes offside error. [#1402](https://github.com/fsprojects/fantomas/issues/1402)
Fix Nested matches format into something invalid. [#1400](https://github.com/fsprojects/fantomas/issues/1400)
Fix Shortening big `if` clause still creates compiler warnings. [#1390](https://github.com/fsprojects/fantomas/issues/1390)
Fix “FS0058: Possible incorrect indentation” on function composition after running Fantomas. [#1341](https://github.com/fsprojects/fantomas/issues/1341)
Fix Typed App followed by chained lambda should not add space. [#1448](https://github.com/fsprojects/fantomas/issues/1448)
Fix TypedApp should not have a space when chained. [#1447](https://github.com/fsprojects/fantomas/issues/1447)
Fix Unexpected newline after short match expression. [#1445](https://github.com/fsprojects/fantomas/issues/1445)
Fix Space after chain lambda function is not allowed. [#1440](https://github.com/fsprojects/fantomas/issues/1440)
Fix Formatting error with MultilineBlockBracketsOnSameColumn. [#1396](https://github.com/fsprojects/fantomas/issues/1396)
Fix fsharp_space_before_uppercase_invocation=true breaks method calls. [#1437](https://github.com/fsprojects/fantomas/issues/1437)
Fix Crash regression on 4.4.0-beta-003. [#1438](https://github.com/fsprojects/fantomas/issues/1438)
Fix MultiLineLambdaClosingNewline concats lambda arguments. [#1427](https://github.com/fsprojects/fantomas/issues/1427)
Fix `member val` causes invalid code to be generated. [#1426](https://github.com/fsprojects/fantomas/issues/1426)
Fix Surround return type annotations with white space [F# style guide]. [#1420](https://github.com/fsprojects/fantomas/issues/1420)
Fix Lists concatene onto one line invalidly. [#1405](https://github.com/fsprojects/fantomas/issues/1405)
Fix Accessibility modifier on record causes unindentation of following type. [#1404](https://github.com/fsprojects/fantomas/issues/1404)
Fix Invalid addition of a space after constructor invocation. [#1401](https://github.com/fsprojects/fantomas/issues/1401)
Fix "Inline" is incorrectly stripped out in FSI file. [#1399](https://github.com/fsprojects/fantomas/issues/1399)
Fix Multiple type checks in a `try/with` get collapsed. [#1395](https://github.com/fsprojects/fantomas/issues/1395)
Fix Short line length and member constraint leads to invalid code. [#1394](https://github.com/fsprojects/fantomas/issues/1394)
Fix Object expression newline gets added/removed. [#1388](https://github.com/fsprojects/fantomas/issues/1388)
Fix Arrays of constructors with lots of arguments gets dedented too much. [#1382](https://github.com/fsprojects/fantomas/issues/1382)
Fix Format in pre-commit hook. [#1207](https://github.com/fsprojects/fantomas/issues/1207)
Fix Shortening an 'if' condition causes compilation warnings about indentation. [#1374](https://github.com/fsprojects/fantomas/issues/1374)
Fix Some escapes are unexpectedly modified in character literal patterns. [#1372](https://github.com/fsprojects/fantomas/issues/1372)
Fix Fantomas formats with an error for very long DU case match. [#1364](https://github.com/fsprojects/fantomas/issues/1364)
Fix Fantomas errors out on `new Foo ""`. [#1363](https://github.com/fsprojects/fantomas/issues/1363)
Fix Aesthetics of long members in a type declaration. [#1362](https://github.com/fsprojects/fantomas/issues/1362)
Fix Comment on first constructor argument gets removed. [#1350](https://github.com/fsprojects/fantomas/issues/1350)
Fix “FS0058: Possible incorrect indentation” around if/then/else after running Fantomas. [#1349](https://github.com/fsprojects/fantomas/issues/1349)
Fix Failing to format file should return an exit code different than 0. [#1340](https://github.com/fsprojects/fantomas/issues/1340)
Fix Shorter MaxLineLength with long variable name yields invalid F# code according to fantomas. [#1241](https://github.com/fsprojects/fantomas/issues/1241)
Fix MultilineBlockBracketsOnSameColumn should be honored inside match block. [#1238](https://github.com/fsprojects/fantomas/issues/1238)
Fix Update constructor formatting to match MS Style guide. [#1359](https://github.com/fsprojects/fantomas/issues/1359)
Fix Violation of name-sensitive alignments. [#1358](https://github.com/fsprojects/fantomas/issues/1358)
Fix Pattern matching breaks code when expression is long and somewhat complex. [#1352](https://github.com/fsprojects/fantomas/issues/1352)
Fix Inserts extra newline everytime formatter runs. [#1346](https://github.com/fsprojects/fantomas/issues/1346)
Fix Functions looses space before parameter if func is defined inside method. [#1345](https://github.com/fsprojects/fantomas/issues/1345)
Fix Required backslash removed in string interpolation. [#1344](https://github.com/fsprojects/fantomas/issues/1344)
Fix Swallows comment before #nowarn directive. [#1220](https://github.com/fsprojects/fantomas/issues/1220)
Fix Swallows comment inside `with` block (of a try-with). [#1219](https://github.com/fsprojects/fantomas/issues/1219)
Fix Program.fs inside full path can lead to invalid AST. [#1337](https://github.com/fsprojects/fantomas/issues/1337)
Fix Formatting of long parameter lists. [#657](https://github.com/fsprojects/fantomas/issues/657)
Fix DotGet inside If expression not correct on second format. [#1329](https://github.com/fsprojects/fantomas/issues/1329)
Fix Pipe is indented too far. [#1327](https://github.com/fsprojects/fantomas/issues/1327)
Fix IfThenElse piped leads to invalid code. [#1324](https://github.com/fsprojects/fantomas/issues/1324)
Fix Multiline when condition in pattern match needs to be further indented. [#1320](https://github.com/fsprojects/fantomas/issues/1320)
Fix Add comma in front of expression in tuple with if/then/else. [#1319](https://github.com/fsprojects/fantomas/issues/1319)
Fix New line before for loop not preserved. [#1317](https://github.com/fsprojects/fantomas/issues/1317)
Fix Newline before set expression is lost. [#1314](https://github.com/fsprojects/fantomas/issues/1314)
Fix Newline after let bang is missing. [#1313](https://github.com/fsprojects/fantomas/issues/1313)
Fix Revisit place parameters on a new line for long definitions. [#1307](https://github.com/fsprojects/fantomas/issues/1307)
Fix static member should only have a single indent. [#1300](https://github.com/fsprojects/fantomas/issues/1300)
Fix Elmish-like syntax using yields with interspersed let statements breaks the code. [#1191](https://github.com/fsprojects/fantomas/issues/1191)
Fix The 'member' keyword gets deleted in 'abstract member' declarations. [#1106](https://github.com/fsprojects/fantomas/issues/1106)
Fix Don't indent too far. [#659](https://github.com/fsprojects/fantomas/issues/659)
Fix static member should only have a single indent. [#1300](https://github.com/fsprojects/fantomas/issues/1300)
Fix Named string argument to type provider requires a space prior to '@' which Fantomas removes. [#1209](https://github.com/fsprojects/fantomas/issues/1209)
Fix Don't indent too far. [#659](https://github.com/fsprojects/fantomas/issues/659)
Fix spaces removed from string. [#1290](https://github.com/fsprojects/fantomas/issues/1290)
Dependencies
-
.NETStandard 2.0
- editorconfig (>= 0.12.2)
- Fantomas (>= 4.4.0)
- FSharp.Core (>= 5.0.0)
- MAB.DotIgnore (>= 3.0.2)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
4.5.0-alpha-009 | 20 | 4/11/2021 |
4.5.0-alpha-008 | 40 | 4/8/2021 |
4.5.0-alpha-007 | 43 | 4/8/2021 |
4.5.0-alpha-006 | 30 | 4/5/2021 |
4.5.0-alpha-005 | 46 | 4/3/2021 |
4.5.0-alpha-004 | 49 | 4/2/2021 |
4.5.0-alpha-003 | 60 | 3/28/2021 |
4.5.0-alpha-002 | 37 | 3/22/2021 |
4.5.0-alpha-001 | 701 | 2/26/2021 |
4.4.0 | 297 | 2/25/2021 |
4.4.0-beta-008 | 80 | 2/19/2021 |
4.4.0-beta-007 | 69 | 2/12/2021 |
4.4.0-beta-006 | 49 | 2/12/2021 |
4.4.0-beta-005 | 37 | 2/9/2021 |
4.4.0-beta-004 | 59 | 2/5/2021 |
4.4.0-beta-003 | 510 | 1/30/2021 |
4.4.0-beta-002 | 66 | 1/23/2021 |
4.4.0-beta-001 | 479 | 1/22/2021 |
4.4.0-alpha-008 | 285 | 1/15/2021 |
4.4.0-alpha-007 | 327 | 12/26/2020 |
4.4.0-alpha-006 | 176 | 12/25/2020 |
4.4.0-alpha-005 | 229 | 12/23/2020 |
4.4.0-alpha-004 | 295 | 12/22/2020 |
4.4.0-alpha-003 | 255 | 12/18/2020 |
4.4.0-alpha-002 | 207 | 12/17/2020 |
4.4.0-alpha-001 | 117 | 12/17/2020 |
4.3.0 | 1,261 | 12/17/2020 |
4.3.0-beta-002 | 217 | 12/11/2020 |
4.3.0-beta-001 | 132 | 12/7/2020 |
4.3.0-alpha-007 | 172 | 11/21/2020 |
4.3.0-alpha-006 | 149 | 11/20/2020 |
4.3.0-alpha-005 | 113 | 11/16/2020 |
4.3.0-alpha-004 | 625 | 11/12/2020 |
4.3.0-alpha-003 | 113 | 11/10/2020 |
4.3.0-alpha-002 | 144 | 10/26/2020 |
4.3.0-alpha-001 | 172 | 10/23/2020 |
4.2.0 | 2,372 | 9/25/2020 |
4.2.0-alpha-004 | 312 | 9/23/2020 |
4.2.0-alpha-003 | 134 | 9/21/2020 |
4.2.0-alpha-002 | 181 | 9/19/2020 |
4.2.0-alpha-001 | 157 | 9/18/2020 |
4.1.1 | 304 | 9/17/2020 |
4.1.0 | 580 | 9/10/2020 |
4.1.0-beta-004 | 299 | 9/5/2020 |
4.1.0-beta-003 | 197 | 9/4/2020 |
4.1.0-beta-002 | 576 | 9/4/2020 |
4.1.0-beta-001 | 166 | 9/3/2020 |
4.1.0-alpha-001 | 158 | 9/1/2020 |
4.0.0 | 1,103 | 8/27/2020 |
4.0.0-beta-003 | 197 | 8/21/2020 |
4.0.0-beta-002 | 262 | 8/7/2020 |