From 6a6bca408a2acf02f7be569c4f67182fb6407f32 Mon Sep 17 00:00:00 2001 From: Kevin Meijer Date: Thu, 29 Jun 2023 13:35:54 +0200 Subject: [PATCH] Updated gitignore --- .gitignore | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f1e92f1..92cb61d 100644 --- a/.gitignore +++ b/.gitignore @@ -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 @@ -18,6 +18,7 @@ composer.phar # Icon must end with two \r Icon + # Thumbnails ._* @@ -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 @@ -48,6 +53,9 @@ Temporary Items .idea/**/dictionaries .idea/**/shelf +# AWS User-specific +.idea/**/aws.xml + # Generated files .idea/**/contentModel.xml @@ -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 @@ -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 @@ -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