-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
70 lines (43 loc) · 914 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
#----------------------------------------------------------------------------
# Ignore these files when committing to a git repository.
#
# See http://git-scm.com/docs/gitignore for more about ignoring files.
#----------------------------------------------------------------------------
## System and Editor
## =================
# Mac finder artifacts
.DS_Store
# RubyMine project files
.idea
# Netbeans project directory
/nbproject/
# Textmate project files
/*.tmproj
# Visual Studio Code
.vscode
# vim artifacts
**.swp
# scm revert files
**.orig
# Environment files that may contain sensitive data
.env
.powenv
## Project various artifacts
## ======
# NPM state
node_modules
npm-debug.log
# minimal Rails specific artifacts
db/*.sqlite3
/db/*.sqlite3-journal
/log/*
/tmp/*
# Ruby Bundler state
/.bundle
/vendor/bundle/
/vendor/ruby/
# Build artifacts
dist/*
!dist/.keep
# Test
#config