From 86efc780dc60d0137c9c06b57d981e6f9140f876 Mon Sep 17 00:00:00 2001 From: ocots <66357348+ocots@users.noreply.github.com> Date: Sat, 7 Sep 2024 00:26:57 +0000 Subject: [PATCH] :robot: Format .jl files --- docs/make.jl | 20 +++++++++++--------- test/runtests.jl | 2 +- test/test_aqua.jl | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 2cfc1fd..3c2bce9 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,21 +1,23 @@ using Documenter -makedocs( - warnonly = :cross_references, - sitename = "Medical Resonance Imaging", - format = Documenter.HTML( - prettyurls = false, - size_threshold_ignore = ["saturation.md", "bloch-equation.md"], - assets = [ +makedocs(; + warnonly=:cross_references, + sitename="Medical Resonance Imaging", + format=Documenter.HTML(; + prettyurls=false, + size_threshold_ignore=["saturation.md", "bloch-equation.md"], + assets=[ asset("https://control-toolbox.org/assets/css/documentation.css"), asset("https://control-toolbox.org/assets/js/documentation.js"), ], ), - pages = [ + pages=[ "Introduction" => "index.md", "Bloch equation" => "bloch-equation.md", "Saturation problem" => "saturation.md", ], ) -deploydocs(repo = "github.com/control-toolbox/medical_resonance_imaging.git", devbranch = "main") +deploydocs(; + repo="github.com/control-toolbox/medical_resonance_imaging.git", devbranch="main" +) diff --git a/test/runtests.jl b/test/runtests.jl index 48fa4ac..6129e90 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -4,7 +4,7 @@ using Test # @testset verbose = true showtiming = true "Base" begin - for name ∈ (:aqua, :default) + for name in (:aqua, :default) @testset "$(name)" begin test_name = Symbol(:test_, name) include("$(test_name).jl") diff --git a/test/test_aqua.jl b/test/test_aqua.jl index e55ab42..d2d37a0 100644 --- a/test/test_aqua.jl +++ b/test/test_aqua.jl @@ -10,4 +10,4 @@ function test_aqua() # do not warn about ambiguities in dependencies Aqua.test_ambiguities(MedicalResonanceImaging) end -end \ No newline at end of file +end