Add code for local docker image build and testing
[mbt-docker.git] / .gitignore
1 # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,git,linux,windows,macos
2 # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,vim,git,linux,windows,macos
3
4 ### Git ###
5 # Created by git for backups. To disable backups in Git:
6 # $ git config --global mergetool.keepBackup false
7 *.orig
8
9 # Created by git when using merge tools for conflicts
10 *.BACKUP.*
11 *.BASE.*
12 *.LOCAL.*
13 *.REMOTE.*
14 *_BACKUP_*.txt
15 *_BASE_*.txt
16 *_LOCAL_*.txt
17 *_REMOTE_*.txt
18
19 ### Linux ###
20 *~
21
22 # temporary files which can be created if a process still has a handle open of a deleted file
23 .fuse_hidden*
24
25 # KDE directory preferences
26 .directory
27
28 # Linux trash folder which might appear on any partition or disk
29 .Trash-*
30
31 # .nfs files are created when an open file is removed but is still being accessed
32 .nfs*
33
34 ### macOS ###
35 # General
36 .DS_Store
37 .AppleDouble
38 .LSOverride
39
40 # Icon must end with two \r
41 Icon
42
43
44 # Thumbnails
45 ._*
46
47 # Files that might appear in the root of a volume
48 .DocumentRevisions-V100
49 .fseventsd
50 .Spotlight-V100
51 .TemporaryItems
52 .Trashes
53 .VolumeIcon.icns
54 .com.apple.timemachine.donotpresent
55
56 # Directories potentially created on remote AFP share
57 .AppleDB
58 .AppleDesktop
59 Network Trash Folder
60 Temporary Items
61 .apdisk
62
63 ### macOS Patch ###
64 # iCloud generated files
65 *.icloud
66
67 ### Vim ###
68 # Swap
69 [._]*.s[a-v][a-z]
70 !*.svg # comment out if you don't need vector files
71 [._]*.sw[a-p]
72 [._]s[a-rt-v][a-z]
73 [._]ss[a-gi-z]
74 [._]sw[a-p]
75
76 # Session
77 Session.vim
78 Sessionx.vim
79
80 # Temporary
81 .netrwhist
82 # Auto-generated tag files
83 tags
84 # Persistent undo
85 [._]*.un~
86
87 ### VisualStudioCode ###
88 .vscode/*
89 !.vscode/tasks.json
90 !.vscode/launch.json
91 !.vscode/*.code-snippets
92
93 # Local History for Visual Studio Code
94 .history/
95
96 # Built Visual Studio Code Extensions
97 *.vsix
98
99 ### VisualStudioCode Patch ###
100 # Ignore all local history of files
101 .history
102 .ionide
103
104 # Support for Project snippet scope
105 .vscode/*.code-snippets
106
107 # Ignore code-workspaces
108 *.code-workspace
109
110 ### Windows ###
111 # Windows thumbnail cache files
112 Thumbs.db
113 Thumbs.db:encryptable
114 ehthumbs.db
115 ehthumbs_vista.db
116
117 # Dump file
118 *.stackdump
119
120 # Folder config file
121 [Dd]esktop.ini
122
123 # Recycle Bin used on file shares
124 $RECYCLE.BIN/
125
126 # Windows Installer files
127 *.cab
128 *.msi
129 *.msix
130 *.msm
131 *.msp
132
133 # Windows shortcuts
134 *.lnk
135
136 # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,vim,git,linux,windows,macos