add .gitignore and .project files
This commit is contained in:
parent
6da27d3121
commit
519f5952b0
2 changed files with 38 additions and 0 deletions
28
.gitignore
vendored
Normal file
28
.gitignore
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
*~
|
||||||
|
.lean_trace
|
||||||
|
*.produced.out
|
||||||
|
*.md.lua
|
||||||
|
*.md.lean
|
||||||
|
*.olean
|
||||||
|
*.clean
|
||||||
|
*.ilean
|
||||||
|
*.d
|
||||||
|
a.out
|
||||||
|
build
|
||||||
|
GPATH
|
||||||
|
GRTAGS
|
||||||
|
GSYMS
|
||||||
|
GTAGS
|
||||||
|
Makefile
|
||||||
|
*.cmake
|
||||||
|
CMakeFiles/
|
||||||
|
.projectile
|
||||||
|
.coveralls.yml
|
||||||
|
.lean_options
|
||||||
|
doc/html
|
||||||
|
make.deps
|
||||||
|
src/emacs/dependencies
|
||||||
|
compile_commands.json
|
||||||
|
.ninja_deps
|
||||||
|
.ninja_log
|
||||||
|
build.ninja
|
10
.project
Normal file
10
.project
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# Lean project file
|
||||||
|
|
||||||
|
# Include all .hlean files under this directory
|
||||||
|
+ *.hlean
|
||||||
|
|
||||||
|
# Exclude flycheck generated temp files
|
||||||
|
- flycheck*.hlean
|
||||||
|
|
||||||
|
# Exclude emacs temp files
|
||||||
|
- .#*.hlean
|
Loading…
Reference in a new issue