Skip to content

Commit 788d9b6

Browse files
Merge pull request #38 from commitdev/gitignore
Standardize using gitignore.io
2 parents 0507af9 + 783041d commit 788d9b6

File tree

1 file changed

+102
-1
lines changed

1 file changed

+102
-1
lines changed

.gitignore

Lines changed: 102 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,103 @@
1+
# Created by https://www.gitignore.io/api/linux,macos,windows,terraform
2+
# Edit at https://www.gitignore.io/?templates=linux,macos,windows,terraform
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
121
.DS_Store
2-
.terraform
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear in the root of a volume
32+
.DocumentRevisions-V100
33+
.fseventsd
34+
.Spotlight-V100
35+
.TemporaryItems
36+
.Trashes
37+
.VolumeIcon.icns
38+
.com.apple.timemachine.donotpresent
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
### Terraform ###
48+
# Local .terraform directories
49+
**/.terraform/*
50+
51+
# .tfstate files
52+
*.tfstate
53+
*.tfstate.*
54+
55+
# Crash log files
56+
crash.log
57+
58+
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
59+
# .tfvars files are managed as part of configuration and so should be included in
60+
# version control.
61+
#
62+
# example.tfvars
63+
64+
# Ignore override files as they are usually used to override resources locally and so
65+
# are not checked in
66+
override.tf
67+
override.tf.json
68+
*_override.tf
69+
*_override.tf.json
70+
71+
# Include override files you do wish to add to version control using negated pattern
72+
# !example_override.tf
73+
74+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
75+
# example: *tfplan*
76+
77+
### Windows ###
78+
# Windows thumbnail cache files
79+
Thumbs.db
80+
Thumbs.db:encryptable
81+
ehthumbs.db
82+
ehthumbs_vista.db
83+
84+
# Dump file
85+
*.stackdump
86+
87+
# Folder config file
88+
[Dd]esktop.ini
89+
90+
# Recycle Bin used on file shares
91+
$RECYCLE.BIN/
92+
93+
# Windows Installer files
94+
*.cab
95+
*.msi
96+
*.msix
97+
*.msm
98+
*.msp
99+
100+
# Windows shortcuts
101+
*.lnk
102+
103+
# End of https://www.gitignore.io/api/linux,macos,windows,terraform

0 commit comments

Comments
 (0)