Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .JuliaFormatter.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Configuration file for JuliaFormatter.jl
# For more information, see: https://domluna.github.io/JuliaFormatter.jl/stable/config/

always_for_in = true
margin = 80
remove_extra_newlines = true
separate_kwargs_with_semicolon = true
short_to_long_function_def = true
20 changes: 8 additions & 12 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
using Documenter, SQLite

makedocs(;
modules=[SQLite],
format=Documenter.HTML(),
pages=[
"Home" => "index.md",
],
repo="https://github.com/JuliaDatabases/SQLite.jl/blob/{commit}{path}#L{line}",
sitename="SQLite.jl",
authors="Jacob Quinn",
assets=String[],
modules = [SQLite],
format = Documenter.HTML(),
pages = ["Home" => "index.md"],
repo = "https://github.com/JuliaDatabases/SQLite.jl/blob/{commit}{path}#L{line}",
sitename = "SQLite.jl",
authors = "Jacob Quinn",
assets = String[],
)

deploydocs(;
repo="github.com/JuliaDatabases/SQLite.jl",
)
deploydocs(; repo = "github.com/JuliaDatabases/SQLite.jl")
Loading