From 43815f35cca2bf388677206a3202163221f6ffd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rez?= Date: Wed, 14 Aug 2024 19:10:32 +0100 Subject: [PATCH] add .gitignore --- .gitattributes | 8 ++++++++ .gitignore | 19 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0799794 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,8 @@ +[attr]rust text eol=lf whitespace=tab-in-indent,trailing-space,tabwidth=4 + +* text=auto eol=lf +*.rs rust +*.woff binary +*.ttf binary +*.otf binary +*.png binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc4e9a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +Cargo.lock +target + +# MacOS temp file +.DS_Store + +book-test +guide/book + +.vscode +tests/dummy_book/book/ +test_book/book/ + +# Ignore Jetbrains specific files. +.idea/ + +# Ignore Vim temporary and swap files. +*.sw? +*~