Skip to content

Commit a4e4da3

Browse files
authored
Use JuliaFormatter.jl to format all code (#297)
1 parent 189c9c3 commit a4e4da3

File tree

8 files changed

+1397
-699
lines changed

8 files changed

+1397
-699
lines changed

.JuliaFormatter.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Configuration file for JuliaFormatter.jl
2+
# For more information, see: https://domluna.github.io/JuliaFormatter.jl/stable/config/
3+
4+
always_for_in = true
5+
margin = 80
6+
remove_extra_newlines = true
7+
separate_kwargs_with_semicolon = true
8+
short_to_long_function_def = true

docs/make.jl

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
using Documenter, SQLite
22

33
makedocs(;
4-
modules=[SQLite],
5-
format=Documenter.HTML(),
6-
pages=[
7-
"Home" => "index.md",
8-
],
9-
repo="https://github.com/JuliaDatabases/SQLite.jl/blob/{commit}{path}#L{line}",
10-
sitename="SQLite.jl",
11-
authors="Jacob Quinn",
12-
assets=String[],
4+
modules = [SQLite],
5+
format = Documenter.HTML(),
6+
pages = ["Home" => "index.md"],
7+
repo = "https://github.com/JuliaDatabases/SQLite.jl/blob/{commit}{path}#L{line}",
8+
sitename = "SQLite.jl",
9+
authors = "Jacob Quinn",
10+
assets = String[],
1311
)
1412

15-
deploydocs(;
16-
repo="github.com/JuliaDatabases/SQLite.jl",
17-
)
13+
deploydocs(; repo = "github.com/JuliaDatabases/SQLite.jl")

0 commit comments

Comments
 (0)