mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-21 18:24:20 +08:00
293ff179f6
Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
63 lines
1.0 KiB
Plaintext
63 lines
1.0 KiB
Plaintext
# Ignore all the files, except the ones we expect.
|
|
# See https://jasonstitt.com/gitignore-whitelisting-patterns
|
|
*
|
|
!*/
|
|
|
|
# Ignore build directories generated by default MSVC CMake integration
|
|
# (otherwise causes terribly slow indexing)
|
|
out/
|
|
|
|
# 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/**/*.cpp
|
|
!examples/**/*.css
|
|
!examples/**/*.hpp
|
|
!examples/**/*.html
|
|
!examples/**/*.html.disabled
|
|
!examples/**/*.ipp
|
|
!examples/**/*.js
|
|
!examples/**/*.mjs
|
|
!examples/**/*.py
|
|
!examples/**/*.txt
|
|
|
|
# include directory:
|
|
!include/ftxui/**/*.hpp
|
|
!include/ftxui/**/*.cpp
|
|
|
|
# src directory:
|
|
!src/ftxui/**/*.hpp
|
|
!src/ftxui/**/*.cpp
|
|
|
|
# tools directory:
|
|
!tools/**/*.sh
|
|
!tools/**/*.cpp
|