Skip to content

Commit a20bd0a

Browse files
committed
chore: remove composer and terraform from .gitignore
1 parent 2670ef9 commit a20bd0a

File tree

1 file changed

+21
-44
lines changed

1 file changed

+21
-44
lines changed

.gitignore

+21-44
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
# Optional stylelint cache
22
.stylelintcache
33

4-
# Created by https://www.toptal.com/developers/gitignore/api/node,macos,sublimetext,composer,git,vim,windows,visualstudiocode,terraform
5-
# Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,sublimetext,composer,git,vim,windows,visualstudiocode,terraform
6-
7-
### Composer ###
8-
composer.phar
9-
/vendor/
10-
11-
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
12-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
13-
# composer.lock
4+
# Created by https://www.toptal.com/developers/gitignore/api/vim,git,node,macos,windows,sublimetext,visualstudiocode
5+
# Edit at https://www.toptal.com/developers/gitignore?templates=vim,git,node,macos,windows,sublimetext,visualstudiocode
146

157
### Git ###
168
# Created by git for backups. To disable backups in Git:
@@ -63,6 +55,7 @@ npm-debug.log*
6355
yarn-debug.log*
6456
yarn-error.log*
6557
lerna-debug.log*
58+
.pnpm-debug.log*
6659

6760
# Diagnostic reports (https://nodejs.org/api/report.html)
6861
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -99,8 +92,8 @@ build/Release
9992
node_modules/
10093
jspm_packages/
10194

102-
# TypeScript v1 declaration files
103-
typings/
95+
# Snowpack dependency directory (https://snowpack.dev/)
96+
web_modules/
10497

10598
# TypeScript cache
10699
*.tsbuildinfo
@@ -129,14 +122,15 @@ typings/
129122
# dotenv environment variables file
130123
.env
131124
.env.test
132-
.env*.local
125+
.env.production
133126

134127
# parcel-bundler cache (https://parceljs.org/)
135128
.cache
136129
.parcel-cache
137130

138131
# Next.js build output
139132
.next
133+
out
140134

141135
# Nuxt.js build / generate output
142136
.nuxt
@@ -166,6 +160,13 @@ dist
166160
# Stores VSCode versions used for testing VSCode extensions
167161
.vscode-test
168162

163+
# yarn v2
164+
.yarn/cache
165+
.yarn/unplugged
166+
.yarn/build-state.yml
167+
.yarn/install-state.gz
168+
.pnp.*
169+
169170
### SublimeText ###
170171
# Cache files for Sublime Text
171172
*.tmlanguage.cache
@@ -181,6 +182,7 @@ dist
181182

182183
# SFTP configuration file
183184
sftp-config.json
185+
sftp-config-alt*.json
184186

185187
# Package control specific files
186188
Package Control.last-run
@@ -198,36 +200,6 @@ bh_unicode_properties.cache
198200
# https://packagecontrol.io/packages/sublime-github
199201
GitHub.sublime-settings
200202

201-
### Terraform ###
202-
# Local .terraform directories
203-
**/.terraform/*
204-
205-
# .tfstate files
206-
*.tfstate
207-
*.tfstate.*
208-
209-
# Crash log files
210-
crash.log
211-
212-
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
213-
# .tfvars files are managed as part of configuration and so should be included in
214-
# version control.
215-
#
216-
# example.tfvars
217-
218-
# Ignore override files as they are usually used to override resources locally and so
219-
# are not checked in
220-
override.tf
221-
override.tf.json
222-
*_override.tf
223-
*_override.tf.json
224-
225-
# Include override files you do wish to add to version control using negated pattern
226-
# !example_override.tf
227-
228-
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
229-
# example: *tfplan*
230-
231203
### Vim ###
232204
# Swap
233205
[._]*.s[a-v][a-z]
@@ -251,10 +223,15 @@ tags
251223

252224
### VisualStudioCode ###
253225
.vscode/*
226+
!.vscode/settings.json
254227
!.vscode/tasks.json
255228
!.vscode/launch.json
229+
!.vscode/extensions.json
256230
*.code-workspace
257231

232+
# Local History for Visual Studio Code
233+
.history/
234+
258235
### VisualStudioCode Patch ###
259236
# Ignore all local history of files
260237
.history
@@ -286,4 +263,4 @@ $RECYCLE.BIN/
286263
# Windows shortcuts
287264
*.lnk
288265

289-
# End of https://www.toptal.com/developers/gitignore/api/node,macos,sublimetext,composer,git,vim,windows,visualstudiocode,terraform
266+
# End of https://www.toptal.com/developers/gitignore/api/vim,git,node,macos,windows,sublimetext,visualstudiocode

0 commit comments

Comments
 (0)