-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlakefile.toml
More file actions
30 lines (25 loc) · 853 Bytes
/
lakefile.toml
File metadata and controls
30 lines (25 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name = "«flt-regular»"
defaultTargets = ["FltRegular"]
[leanOptions]
pp.unicode.fun = true # pretty-prints `fun a ↦ b`
autoImplicit = false # no "assume a typo is a new variable"
relaxedAutoImplicit = false # no "assume a typo is a new variable"
maxSynthPendingDepth = 3 # same as mathlib, changes behaviour of typeclass inference
# Enable all mathlib linters: automatically matches what mathlib uses.
linter.mathlibStandardSet = true
linter.flexible = true
[[require]]
name = "mathlib"
git = "https://github.com/leanprover-community/mathlib4.git"
[[require]]
name = "checkdecls"
git = "https://github.com/PatrickMassot/checkdecls.git"
rev = "master"
# This creates problems with the cache
#[[require]]
#name = "«doc-gen4»"
#git = "git@github.com:leanprover/doc-gen4.git"
#rev = "main"
[[lean_lib]]
name = "FltRegular"
globs = ["FltRegular"]