Bump fantomas from 5.2.0-alpha-008 to 6.3.16 in /AdventOfCode2022 (#93)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2024-12-09 08:44:02 +00:00
committed by GitHub
parent 1175402b41
commit 31996a2205
7 changed files with 9 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"fantomas": {
"version": "5.2.0-alpha-008",
"version": "6.3.16",
"commands": [
"fantomas"
]

View File

@@ -23,7 +23,7 @@ fsharp_space_before_class_constructor=true
fsharp_space_before_member=true
fsharp_space_before_colon=true
fsharp_space_before_semicolon=true
fsharp_multiline_block_brackets_on_same_column=true
fsharp_multiline_bracket_style=aligned
fsharp_newline_between_type_definition_and_members=true
fsharp_align_function_signature_to_indentation=true
fsharp_alternative_long_member_definitions=true

1
.fantomasignore Normal file
View File

@@ -0,0 +1 @@
.direnv/

View File

@@ -5,9 +5,7 @@ open System.Reflection
[<RequireQualifiedAccess>]
module Assembly =
type private Dummy =
class
end
type private Dummy = class end
let readResource (name : string) : string =
let asm = Assembly.GetAssembly typeof<Dummy>

View File

@@ -107,9 +107,7 @@ module Program =
match args with
| [| "bench" |] ->
let config =
ManualConfig
.Create(DefaultConfig.Instance)
.WithOptions ConfigOptions.DisableOptimizationsValidator
ManualConfig.Create(DefaultConfig.Instance).WithOptions ConfigOptions.DisableOptimizationsValidator
let _summary = BenchmarkRunner.Run<Benchmarks.Benchmark1To5> config
let _summary = BenchmarkRunner.Run<Benchmarks.Benchmark6To10> config

View File

@@ -6,9 +6,7 @@ open System.Reflection
[<RequireQualifiedAccess>]
module Assembly =
type private Dummy =
class
end
type private Dummy = class end
let readResource (name : string) : string =
let asm = Assembly.GetAssembly typeof<Dummy>

View File

@@ -23,8 +23,8 @@
})
(fetchNuGet {
pname = "fantomas";
version = "5.2.0-alpha-008";
hash = "sha256-1egphbWXTjs2I5aFaWibFDKgu3llP1o32o1X5vab6v4=";
version = "6.3.16";
hash = "sha256-4tRdYf+/Q1iedx+DDuIKVGlIWQdr6erM51VdKzZkhCs=";
})
(fetchNuGet {
pname = "FSharp.Collections.ParallelSeq";