Selaa lähdekoodia

Add `.gitignore` for `tests` directory

Feoramund 11 kuukautta sitten
vanhempi
commit
3a32250b80
2 muutettua tiedostoa jossa 19 lisäystä ja 2 poistoa
  1. 0 2
      .gitignore
  2. 19 0
      tests/.gitignore

+ 0 - 2
.gitignore

@@ -23,8 +23,6 @@ bld/
 [Oo]bj/
 [Oo]bj/
 [Ll]og/
 [Ll]og/
 ![Cc]ore/[Ll]og/
 ![Cc]ore/[Ll]og/
-tests/documentation/verify/
-tests/documentation/all.odin-doc
 # Visual Studio 2015 cache/options directory
 # Visual Studio 2015 cache/options directory
 .vs/
 .vs/
 # Visual Studio Code options directory
 # Visual Studio Code options directory

+ 19 - 0
tests/.gitignore

@@ -0,0 +1,19 @@
+# Ignore all files.
+*
+
+# Un-ignore all directories.
+!*/
+
+# Un-ignore files with an extension.
+#
+# In conjunction with the first two rules, this should catch extensionless
+# binaries on the UNIX-like platforms.
+!*.*
+
+# But remember to ignore executables with an extension.
+*.exe
+*.bin
+
+# Ignore documentation-related files.
+/documentation/verify/
+/documentation/all.odin-doc