From 8bb1b55ca7bb2d040230bf11d5ecb41b1556d580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Sat, 15 Oct 2022 18:15:42 +0200 Subject: [PATCH] [TASK] Add .gitignore for JetBrains Fleet editor JetBrains created a new product named `Fleet` as lightweight editor. This tool tends to write it's config files to `.fleet/` folders, like all of the IntellJ based IDE's like PHPStorm uses the `.idea` folder. This change adds this config folder to .gitignore to avoid adding this folder to a patch if `Fleet` is used to create a patch. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4464c08..7b4e503 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /*.idea +/.fleet /.Build/* /.php-cs-fixer.cache /.phpunit.result.cache