-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.gitignore
43 lines (40 loc) · 1.19 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
# TELL GIT TO IGNORE STUFF
# Doesn't work on anything already under version control.
# https://git-scm.com/docs/gitignore
# Ignore the following files and directories at any depth relative to the
# directory this `.gitignore` file is currently located in.
**/node_modules
# Numerous always-ignore extensions
*.diff
*.err
*.log
*.orig
*.swp
*.zip
*~
# OS or Editor folders
# OS
# https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
#
# Editor
# https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore
# https://github.com/github/gitignore/blob/master/Global/Espresso.gitignore
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
# https://github.com/github/gitignore/blob/master/Global/NetBeans.gitignore
# https://github.com/github/gitignore/blob/master/Global/SublimeText.gitignore
# https://github.com/github/gitignore/blob/master/Global/TextMate.gitignore
**/._*
**/.DS_Store
**/*.DS_Store
**/Thumbs.db
.cache
.idea
.project
.settings
.tmproj
*.esproj
*.sublime-project
*.sublime-workspace
nbproject