-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.gitignore
75 lines (51 loc) · 925 Bytes
/
.gitignore
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Virtualenv
venv/
# Emacs backups
*~
# Generated documentation
doc-gen/
# Python class files
*.pyc
# IntelliJ IDEA / PyCharm
.idea/
*.iml
# Log files
*.log
# target directory
target/
# tmp directories everywhere
tmp/
# Personal information
personal-info/
# Cache directory
.cpcache/
# Node modules
node_modules/
# Shadow cljs
.shadow-cljs/
# Leiningen
# Always ignore .lein-env in Clojure projects since there could be secrets related to environments.
.lein-env
.lein-failures
.lein-repl-history
.nrepl-port
# Javascript generated stuff
clj-ring-cljs-reagent-demo/simple-frontend/public/js/
# Python virtual environments
venv3/
# Azurite installation
clj-ring-cljs-reagent-demo/simple-server/azure-table-storage/azurite/
# VS Code
.vscode/
# CLJ errors.
trace.edn
# clj-kondo cache
.cache/
out/
lsp/
# Personal Clojure scratch files in various projects.
clj-scratch/
scratch/
personal/
.calva/
logs/