From 5a5d900c274dda608f757f07df6fc6b31b46b987 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 16 Oct 2022 17:47:04 +0200 Subject: [PATCH] [TASK] Add `.gitignore` entry for JetBrains Fleet editor (#642) 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 + CHANGELOG.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 4464c08..109bdb9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /*.idea /.Build/* +/.fleet /.php-cs-fixer.cache /.phpunit.result.cache /Documentation-GENERATED-temp/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 481645d..96daecb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## x.y.z ### Added +- Add `.gitignore` entry for JetBrains Fleet editor (#642) ### Changed - Upgrade to `helmich/typo3-typoscript-lint` V3 (#645)