Change gitkeep into gitignore and move ignore up to root gitignore

I kept on getting confused on why things were being ignored in the data
dir and didn't know where to look.
This commit is contained in:
Dion Moult
2025-01-23 22:48:25 +11:00
parent 039b7ef4ca
commit b7e4904905
12 changed files with 19 additions and 2 deletions
-2
View File
@@ -1,2 +0,0 @@
# addon writes tmp stuff directly to its dir
/data/
@@ -0,0 +1,3 @@
*
!.gitignore
!README.md
@@ -0,0 +1 @@
This directory stores generated drawings in SVG format.
@@ -0,0 +1,3 @@
*
!.gitignore
!README.md
@@ -0,0 +1 @@
This directory stores generated tabular schedules in SVG format.
@@ -0,0 +1,3 @@
*
!.gitignore
!README.md
@@ -0,0 +1 @@
This directory stores generated sheets in SVG format. Sheets typically contain drawings and schedules.
View File