Skip to content

Commit fd330b0

Browse files
committed
Initial commit
0 parents  commit fd330b0

1 file changed

Lines changed: 311 additions & 0 deletions

File tree

.gitignore

Lines changed: 311 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,311 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/linux,macos,windows,vim,emacs,sublimetext,visualstudiocode,intellij+all,go
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,windows,vim,emacs,sublimetext,visualstudiocode,intellij+all,go
3+
4+
### Emacs ###
5+
# -*- mode: gitignore; -*-
6+
*~
7+
\#*\#
8+
/.emacs.desktop
9+
/.emacs.desktop.lock
10+
*.elc
11+
auto-save-list
12+
tramp
13+
.\#*
14+
15+
# Org-mode
16+
.org-id-locations
17+
*_archive
18+
19+
# flymake-mode
20+
*_flymake.*
21+
22+
# eshell files
23+
/eshell/history
24+
/eshell/lastdir
25+
26+
# elpa packages
27+
/elpa/
28+
29+
# reftex files
30+
*.rel
31+
32+
# AUCTeX auto folder
33+
/auto/
34+
35+
# cask packages
36+
.cask/
37+
dist/
38+
39+
# Flycheck
40+
flycheck_*.el
41+
42+
# server auth directory
43+
/server/
44+
45+
# projectiles files
46+
.projectile
47+
48+
# directory configuration
49+
.dir-locals.el
50+
51+
# network security
52+
/network-security.data
53+
54+
55+
### Go ###
56+
# If you prefer the allow list template instead of the deny list, see community template:
57+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
58+
#
59+
# Binaries for programs and plugins
60+
*.exe
61+
*.exe~
62+
*.dll
63+
*.so
64+
*.dylib
65+
66+
# Test binary, built with `go test -c`
67+
*.test
68+
69+
# Output of the go coverage tool, specifically when used with LiteIDE
70+
*.out
71+
72+
# Dependency directories (remove the comment below to include it)
73+
# vendor/
74+
75+
# Go workspace file
76+
go.work
77+
78+
### Intellij+all ###
79+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
80+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
81+
82+
# User-specific stuff
83+
.idea/**/workspace.xml
84+
.idea/**/tasks.xml
85+
.idea/**/usage.statistics.xml
86+
.idea/**/dictionaries
87+
.idea/**/shelf
88+
89+
# AWS User-specific
90+
.idea/**/aws.xml
91+
92+
# Generated files
93+
.idea/**/contentModel.xml
94+
95+
# Sensitive or high-churn files
96+
.idea/**/dataSources/
97+
.idea/**/dataSources.ids
98+
.idea/**/dataSources.local.xml
99+
.idea/**/sqlDataSources.xml
100+
.idea/**/dynamic.xml
101+
.idea/**/uiDesigner.xml
102+
.idea/**/dbnavigator.xml
103+
104+
# Gradle
105+
.idea/**/gradle.xml
106+
.idea/**/libraries
107+
108+
# Gradle and Maven with auto-import
109+
# When using Gradle or Maven with auto-import, you should exclude module files,
110+
# since they will be recreated, and may cause churn. Uncomment if using
111+
# auto-import.
112+
# .idea/artifacts
113+
# .idea/compiler.xml
114+
# .idea/jarRepositories.xml
115+
# .idea/modules.xml
116+
# .idea/*.iml
117+
# .idea/modules
118+
# *.iml
119+
# *.ipr
120+
121+
# CMake
122+
cmake-build-*/
123+
124+
# Mongo Explorer plugin
125+
.idea/**/mongoSettings.xml
126+
127+
# File-based project format
128+
*.iws
129+
130+
# IntelliJ
131+
out/
132+
133+
# mpeltonen/sbt-idea plugin
134+
.idea_modules/
135+
136+
# JIRA plugin
137+
atlassian-ide-plugin.xml
138+
139+
# Cursive Clojure plugin
140+
.idea/replstate.xml
141+
142+
# SonarLint plugin
143+
.idea/sonarlint/
144+
145+
# Crashlytics plugin (for Android Studio and IntelliJ)
146+
com_crashlytics_export_strings.xml
147+
crashlytics.properties
148+
crashlytics-build.properties
149+
fabric.properties
150+
151+
# Editor-based Rest Client
152+
.idea/httpRequests
153+
154+
# Android studio 3.1+ serialized cache file
155+
.idea/caches/build_file_checksums.ser
156+
157+
### Intellij+all Patch ###
158+
# Ignore everything but code style settings and run configurations
159+
# that are supposed to be shared within teams.
160+
161+
.idea/*
162+
163+
!.idea/codeStyles
164+
!.idea/runConfigurations
165+
166+
### Linux ###
167+
168+
# temporary files which can be created if a process still has a handle open of a deleted file
169+
.fuse_hidden*
170+
171+
# KDE directory preferences
172+
.directory
173+
174+
# Linux trash folder which might appear on any partition or disk
175+
.Trash-*
176+
177+
# .nfs files are created when an open file is removed but is still being accessed
178+
.nfs*
179+
180+
### macOS ###
181+
# General
182+
.DS_Store
183+
.AppleDouble
184+
.LSOverride
185+
186+
# Icon must end with two \r
187+
Icon
188+
189+
190+
# Thumbnails
191+
._*
192+
193+
# Files that might appear in the root of a volume
194+
.DocumentRevisions-V100
195+
.fseventsd
196+
.Spotlight-V100
197+
.TemporaryItems
198+
.Trashes
199+
.VolumeIcon.icns
200+
.com.apple.timemachine.donotpresent
201+
202+
# Directories potentially created on remote AFP share
203+
.AppleDB
204+
.AppleDesktop
205+
Network Trash Folder
206+
Temporary Items
207+
.apdisk
208+
209+
### macOS Patch ###
210+
# iCloud generated files
211+
*.icloud
212+
213+
### SublimeText ###
214+
# Cache files for Sublime Text
215+
*.tmlanguage.cache
216+
*.tmPreferences.cache
217+
*.stTheme.cache
218+
219+
# Workspace files are user-specific
220+
*.sublime-workspace
221+
222+
# Project files should be checked into the repository, unless a significant
223+
# proportion of contributors will probably not be using Sublime Text
224+
# *.sublime-project
225+
226+
# SFTP configuration file
227+
sftp-config.json
228+
sftp-config-alt*.json
229+
230+
# Package control specific files
231+
Package Control.last-run
232+
Package Control.ca-list
233+
Package Control.ca-bundle
234+
Package Control.system-ca-bundle
235+
Package Control.cache/
236+
Package Control.ca-certs/
237+
Package Control.merged-ca-bundle
238+
Package Control.user-ca-bundle
239+
oscrypto-ca-bundle.crt
240+
bh_unicode_properties.cache
241+
242+
# Sublime-github package stores a github token in this file
243+
# https://packagecontrol.io/packages/sublime-github
244+
GitHub.sublime-settings
245+
246+
### Vim ###
247+
# Swap
248+
[._]*.s[a-v][a-z]
249+
!*.svg # comment out if you don't need vector files
250+
[._]*.sw[a-p]
251+
[._]s[a-rt-v][a-z]
252+
[._]ss[a-gi-z]
253+
[._]sw[a-p]
254+
255+
# Session
256+
Session.vim
257+
Sessionx.vim
258+
259+
# Temporary
260+
.netrwhist
261+
# Auto-generated tag files
262+
tags
263+
# Persistent undo
264+
[._]*.un~
265+
266+
### VisualStudioCode ###
267+
.vscode/*
268+
!.vscode/settings.json
269+
!.vscode/tasks.json
270+
!.vscode/launch.json
271+
!.vscode/extensions.json
272+
!.vscode/*.code-snippets
273+
274+
# Local History for Visual Studio Code
275+
.history/
276+
277+
# Built Visual Studio Code Extensions
278+
*.vsix
279+
280+
### VisualStudioCode Patch ###
281+
# Ignore all local history of files
282+
.history
283+
.ionide
284+
285+
### Windows ###
286+
# Windows thumbnail cache files
287+
Thumbs.db
288+
Thumbs.db:encryptable
289+
ehthumbs.db
290+
ehthumbs_vista.db
291+
292+
# Dump file
293+
*.stackdump
294+
295+
# Folder config file
296+
[Dd]esktop.ini
297+
298+
# Recycle Bin used on file shares
299+
$RECYCLE.BIN/
300+
301+
# Windows Installer files
302+
*.cab
303+
*.msi
304+
*.msix
305+
*.msm
306+
*.msp
307+
308+
# Windows shortcuts
309+
*.lnk
310+
311+
# End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,vim,emacs,sublimetext,visualstudiocode,intellij+all,go

0 commit comments

Comments
 (0)