Skip to content

Commit

Permalink
Updated gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Meijer committed Jun 29, 2023
1 parent daf21d1 commit 6a6bca4
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Created by https://www.toptal.com/developers/gitignore/api/phpstorm,composer,macos,windows
# Edit at https://www.toptal.com/developers/gitignore?templates=phpstorm,composer,macos,windows
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,composer,phpstorm,phpunit
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,composer,phpstorm,phpunit

### Composer ###
composer.phar
Expand All @@ -18,6 +18,7 @@ composer.phar
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand All @@ -37,6 +38,10 @@ Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

### PhpStorm ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
Expand All @@ -48,6 +53,9 @@ Temporary Items
.idea/**/dictionaries
.idea/**/shelf

# AWS User-specific
.idea/**/aws.xml

# Generated files
.idea/**/contentModel.xml

Expand Down Expand Up @@ -98,6 +106,9 @@ atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml

# SonarLint plugin
.idea/sonarlint/

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
Expand Down Expand Up @@ -140,6 +151,25 @@ fabric.properties
# https://plugins.jetbrains.com/plugin/12206-codestream
.idea/codestream.xml

# Azure Toolkit for IntelliJ plugin
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
.idea/**/azureSettings.xml

### PHPUnit ###
# Covers PHPUnit
# Reference: https://phpunit.de/

# Generated files
.phpunit.result.cache
.phpunit.cache

# PHPUnit
/app/phpunit.xml
/phpunit.xml

# Build data
/build/

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Expand All @@ -166,4 +196,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/phpstorm,composer,macos,windows
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,composer,phpstorm,phpunit

0 comments on commit 6a6bca4

Please sign in to comment.