Fix the .gitignore file. (#688)

This commit is contained in:
Arthur Sonzogni 2023-06-24 17:52:44 +02:00 committed by GitHub
parent 34688fdd8c
commit e9e1451f3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
.gitignore vendored
View File

@ -1,5 +1,7 @@
# Ignore all the files, except the ones we expect.
# See https://jasonstitt.com/gitignore-whitelisting-patterns
*
!*/
# Allowed top-level files:
!.clang-format
@ -42,13 +44,16 @@
!examples/**/*.html.disabled
# include directory:
!include/ftxui/
!include/ftxui/**/*.hpp
!include/ftxui/**/*.cpp
# src directory:
!src/
!src/ftxui/**/*.hpp
!src/ftxui/**/*.cpp
# tools directory:
!tools/
!tools/**/*.sh
!tools/**/*.cpp