Skip to content

Commit 658c603

Browse files
committed
Reformat CI and docs gen code
1 parent d8e3b16 commit 658c603

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

docs/make.jl

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,16 @@ using Documenter
88
using MeasureBase
99

1010
# Doctest setup
11-
DocMeta.setdocmeta!(
12-
MeasureBase,
13-
:DocTestSetup,
14-
:(using MeasureBase);
15-
recursive=true,
16-
)
11+
DocMeta.setdocmeta!(MeasureBase, :DocTestSetup, :(using MeasureBase); recursive = true)
1712

1813
makedocs(
1914
sitename = "MeasureBase",
2015
modules = [MeasureBase],
2116
format = Documenter.HTML(
2217
prettyurls = !("local" in ARGS),
23-
canonical = "https://juliamath.github.io/MeasureBase.jl/stable/"
18+
canonical = "https://juliamath.github.io/MeasureBase.jl/stable/",
2419
),
25-
pages = [
26-
"Home" => "index.md",
27-
"API" => "api.md",
28-
"LICENSE" => "LICENSE.md",
29-
],
20+
pages = ["Home" => "index.md", "API" => "api.md", "LICENSE" => "LICENSE.md"],
3021
doctest = ("fixdoctests" in ARGS) ? :fix : true,
3122
linkcheck = !("nonstrict" in ARGS),
3223
warnonly = ("nonstrict" in ARGS),

test/test_aqua.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,5 @@ import MeasureBase
99
#end # testset
1010

1111
Test.@testset "Aqua tests" begin
12-
Aqua.test_all(
13-
MeasureBase,
14-
ambiguities = false
15-
)
12+
Aqua.test_all(MeasureBase, ambiguities = false)
1613
end # testset

test/test_docs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Documenter.DocMeta.setdocmeta!(
88
MeasureBase,
99
:DocTestSetup,
1010
:(using MeasureBase);
11-
recursive=true,
11+
recursive = true,
1212
)
1313
Documenter.doctest(MeasureBase)

0 commit comments

Comments
 (0)