From da32a8ba0a0c7970530a31aa24fce0ecb4d38815 Mon Sep 17 00:00:00 2001 From: Arthur Sonzogni Date: Fri, 16 Jun 2023 21:29:28 +0200 Subject: [PATCH] Add `.gitignore` (#679) Bug:https://github.com/ArthurSonzogni/FTXUI/issues/669 --- .gitignore | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2047590 --- /dev/null +++ b/.gitignore @@ -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