-
Notifications
You must be signed in to change notification settings - Fork 65
/
.gitignore
71 lines (57 loc) · 1.07 KB
/
.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
# cabal sandbox
.cabal-sandbox/
cabal.sandbox.config
# local database
*.sqlite3
*.sqlite3-shm
*.sqlite3-wal
# generated build files
/app/dist/
# generated stack files
.stack-work/
# generated CSS
/public/style/
# generated resources
/graphs/gen/*.svg
/graphs/gen/*.png
# course videos
/public/videos/
# generated documentation
/doc
# IDE project files
.idea
.vscode
# Node (Javascript) modules
/node_modules
# Yarn files
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# TODO: eventually remove all public/js files from tracking
/public/js/search
/public/js/grid/app.js
/public/js/post/app.js
/public/js/generate/app.js
/public/js/graph/app.js
/public/js/draw/app.js
/public/js/about/app.js
/public/*.svg
/public/*.png
/public/*.ttf
/public/*.eot
/public/*.woff
/public/*.png
/public/*.woff2
# coverage directory used by tools like istanbul and jest --coverage
coverage
# cypress suggested folder structure scaffolding
/cypress/fixtures
/cypress/integration/examples
/cypress/plugins
/cypress/support
# Python virtual environment
venv