-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix format * format format_all.jl * fix docstring * blue style * Update .formatting/format_all.jl Co-authored-by: Anton Reinhard <[email protected]> --------- Co-authored-by: unknown <[email protected]> Co-authored-by: Anton Reinhard <[email protected]>
- Loading branch information
1 parent
36ec264
commit 3f35b76
Showing
3 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
style = "blue" |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
using QEDevents | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(QEDevents, :DocTestSetup, :(using QEDevents); recursive = true) | ||
DocMeta.setdocmeta!(QEDevents, :DocTestSetup, :(using QEDevents); recursive=true) | ||
|
||
makedocs(; | ||
modules = [QEDevents], | ||
authors = "Uwe Hernandez Acosta <[email protected]>, Simeon Ehrig, Klaus Steiniger, Tom Jungnickel, Anton Reinhard", | ||
repo = Documenter.Remotes.GitHub("QEDjl-project", "QEDevents.jl"), | ||
sitename = "QEDevents.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = get(ENV, "CI", "false") == "true", | ||
edit_link = "main", | ||
assets = String[], | ||
modules=[QEDevents], | ||
authors="Uwe Hernandez Acosta <[email protected]>, Simeon Ehrig, Klaus Steiniger, Tom Jungnickel, Anton Reinhard", | ||
repo=Documenter.Remotes.GitHub("QEDjl-project", "QEDevents.jl"), | ||
sitename="QEDevents.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", edit_link="main", assets=String[] | ||
), | ||
pages = ["Home" => "index.md"], | ||
pages=["Home" => "index.md"], | ||
) | ||
deploydocs(repo = "github.com/QEDjl-project/QEDevents.jl.git", push_preview = false) | ||
deploydocs(; repo="github.com/QEDjl-project/QEDevents.jl.git", push_preview=false) |