Add .gitignore (#679)

Bug:https://github.com/ArthurSonzogni/FTXUI/issues/669
This commit is contained in:
Arthur Sonzogni 2023-06-16 21:29:28 +02:00 committed by GitHub
parent d9712cf1e8
commit da32a8ba0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

54
.gitignore vendored Normal file
View File

@ -0,0 +1,54 @@
# Ignore all the files, except the ones we expect.
*
# Allowed top-level files:
!.clang-format
!.clang-tidy
!.gitignore
!CHANGELOG.md
!CMakeLists.txt
!LICENSE
!README.md
!codecov.yml
!flake.lock
!flake.nix
!ftxui.pc.in
!iwyu.imp
# .github directory:
!.github/**/*.yaml
!.github/**/*.yml
# cmake directory:
!cmake/**/*.in
!cmake/**/*.cmake
# doc directory:
!doc/**/Doxyfile.in
!doc/**/*.txt
!doc/**/*.css
!doc/**/*.html
!doc/**/*.xml
!doc/**/*.md
# examples directory:
!examples/**/*.txt
!examples/**/*.cpp
!examples/**/*.hpp
!examples/**/*.ipp
!examples/**/*.html
!examples/**/*.py
!examples/**/*.js
!examples/**/*.html.disabled
# include directory:
!include/ftxui/**/*.hpp
!include/ftxui/**/*.cpp
# src directory:
!src/ftxui/**/*.hpp
!src/ftxui/**/*.cpp
# tools directory:
!tools/**/*.sh
!tools/**/*.cpp