-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
52 lines (44 loc) · 973 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
# IDE's and text editors #
# Ruby mine
/.idea
/.webstorm
# Symbol tags (e.g. generated by Atom Editor)
/tags
# VSCode configuration
/.vscode
# Logs, temp and OS specific files
/log/*
!/log/.keep
/tmp/*
!/tmp/.keep
*~
.DS_Store
.svn
.*.swp
___*
pkg/
chromedriver.log
/.byebug_history
*.log
# Dependency directories
node_modules/
# Dotenv https://github.com/motdotla/dotenv
# Ignore the .env file as this may contain actual credentials. The .env.example
# file gets committed which acts as documentation on what environment
# variables will need to be set up
.env
.env.local
.env_docker
# Unit test coverage output. We keep references to the individual files in
# case any devs still have ones generated before the switch to outputting to
# coverage/
coverage/
coverage.html
lcov.info
# Build assets
app/public/build
# JSDoc documentation output
docs/
# ignore husky config
.husky/