1+
2+ # Created by https://www.gitignore.io/api/node,vim,git,macos,linux,sublimetext
3+
4+ # ## Git ###
5+ * .orig
6+
7+ # ## Linux ###
8+ * ~
9+
10+ # temporary files which can be created if a process still has a handle open of a deleted file
11+ .fuse_hidden *
12+
13+ # KDE directory preferences
14+ .directory
15+
16+ # Linux trash folder which might appear on any partition or disk
17+ .Trash- *
18+
19+ # .nfs files are created when an open file is removed but is still being accessed
20+ .nfs *
21+
22+ # ## macOS ###
23+ * .DS_Store
24+ .AppleDouble
25+ .LSOverride
26+
27+ # Icon must end with two \r
28+ Icon
29+
30+
31+ # Thumbnails
32+ ._ *
33+
34+ # Files that might appear in the root of a volume
35+ .DocumentRevisions-V100
36+ .fseventsd
37+ .Spotlight-V100
38+ .TemporaryItems
39+ .Trashes
40+ .VolumeIcon.icns
41+ .com.apple.timemachine.donotpresent
42+
43+ # Directories potentially created on remote AFP share
44+ .AppleDB
45+ .AppleDesktop
46+ Network Trash Folder
47+ Temporary Items
48+ .apdisk
49+
50+ # ## Node ###
51+ # Logs
52+ logs
53+ * .log
54+ npm-debug.log *
55+ yarn-debug.log *
56+ yarn-error.log *
57+
58+ # Runtime data
59+ pids
60+ * .pid
61+ * .seed
62+ * .pid.lock
63+
64+ # Directory for instrumented libs generated by jscoverage/JSCover
65+ lib-cov
66+
67+ # Coverage directory used by tools like istanbul
68+ coverage
69+
70+ # nyc test coverage
71+ .nyc_output
72+
73+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
74+ .grunt
75+
76+ # Bower dependency directory (https://bower.io/)
77+ bower_components
78+
79+ # node-waf configuration
80+ .lock-wscript
81+
82+ # Compiled binary addons (http://nodejs.org/api/addons.html)
83+ build /Release
84+
85+ # Dependency directories
86+ node_modules /
87+ jspm_packages /
88+
89+ # Typescript v1 declaration files
90+ typings /
91+
92+ # Optional npm cache directory
93+ .npm
94+
95+ # Optional eslint cache
96+ .eslintcache
97+
98+ # Optional REPL history
99+ .node_repl_history
100+
101+ # Output of 'npm pack'
102+ * .tgz
103+
104+ # Yarn Integrity file
105+ .yarn-integrity
106+
107+ # dotenv environment variables file
1108.env
2- /node_modules
109+
110+
111+ # ## SublimeText ###
112+ # cache files for sublime text
113+ * .tmlanguage.cache
114+ * .tmPreferences.cache
115+ * .stTheme.cache
116+
117+ # workspace files are user-specific
118+ * .sublime-workspace
119+
120+ # project files should be checked into the repository, unless a significant
121+ # proportion of contributors will probably not be using SublimeText
122+ # *.sublime-project
123+
124+ # sftp configuration file
125+ sftp-config.json
126+
127+ # Package control specific files
128+ Package Control.last-run
129+ Package Control.ca-list
130+ Package Control.ca-bundle
131+ Package Control.system-ca-bundle
132+ Package Control.cache /
133+ Package Control.ca-certs /
134+ Package Control.merged-ca-bundle
135+ Package Control.user-ca-bundle
136+ oscrypto-ca-bundle.crt
137+ bh_unicode_properties.cache
138+
139+ # Sublime-github package stores a github token in this file
140+ # https://packagecontrol.io/packages/sublime-github
141+ GitHub.sublime-settings
142+
143+ # ## Vim ###
144+ # swap
145+ [._ ]* .s [a-v ][a-z ]
146+ [._ ]* .sw [a-p ]
147+ [._ ]s [a-v ][a-z ]
148+ [._ ]sw [a-p ]
149+ # session
150+ Session.vim
151+ # temporary
152+ .netrwhist
153+ # auto-generated tag files
154+ tags
155+
156+ # End of https://www.gitignore.io/api/node,vim,git,macos,linux,sublimetext
0 commit comments