mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[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.
This commit is contained in:
Oliver Klee 2022-10-16 17:47:04 +02:00 committed by GitHub
parent 122f61fe13
commit 5a5d900c27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
/*.idea
/.Build/*
/.fleet
/.php-cs-fixer.cache
/.phpunit.result.cache
/Documentation-GENERATED-temp/

View file

@ -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)