forked from leanprover/cslib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.toml
More file actions
31 lines (26 loc) · 825 Bytes
/
lakefile.toml
File metadata and controls
31 lines (26 loc) · 825 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
31
name = "cslib"
version = "0.1.0"
defaultTargets = ["Cslib"]
testDriver = "CslibTests"
lintDriver = "batteries/runLinter"
[leanOptions]
weak.linter.mathlibStandardSet = true
weak.linter.flexible = true
# The next three linters are provided by Mathlib, but don't work here.
# This should be fixed, see discussion at https://leanprover.zulipchat.com/#narrow/channel/113488-general/topic/weak.2Elinter.2EmathlibStandardSet.20and.20lint-style-action/with/544726745
weak.linter.pythonStyle = false
weak.linter.checkInitImports = false
weak.linter.allScriptsDocumented = false
[[require]]
name = "mathlib"
scope = "leanprover-community"
[[lean_lib]]
name = "Cslib"
globs = ["Cslib.*"]
[[lean_lib]]
name = "CslibTests"
globs = ["CslibTests.+"]
[[lean_exe]]
name = "checkInitImports"
srcDir = "scripts"
root = "CheckInitImports"