Skip to content

Commit 7ec5119

Browse files
committed
chore: clean up gitignore rules
1 parent 2f1bfe3 commit 7ec5119

File tree

4 files changed

+31
-26
lines changed

4 files changed

+31
-26
lines changed

.gitignore

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
1-
# Editors and local workspace
2-
/.vscode/
3-
/.idea/
1+
# Editors
2+
.vscode/
3+
.idea/
44
*.code-workspace
55

6-
# OS files
6+
# OS
77
.DS_Store
88

9-
# Local tool caches and generated workspace files
10-
/.gop/
9+
# Tool cache
1110
/.gocache/
12-
/_gsc/
13-
/_test/
11+
12+
# Builds
1413
/go.work
15-
/go.json
16-
/gop.json
17-
/gop_autogen.go
1814
/xgo_autogen.go
19-
20-
# Build outputs
2115
*.exe
2216
*.exe~
2317
*.dll
@@ -27,12 +21,10 @@
2721
*.test
2822
*.out
2923

30-
# Temp directories
31-
.temp/
24+
# Root outputs
25+
/.temp/
3226
/.tmp/
33-
34-
# Repo-local generated artifacts
3527
/bin/
3628
/.bin/
3729
/godot/
38-
.gdspx_web_server*.pid
30+
/.gdspx_web_server*.pid
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
./engine/godot.wasm.br
2-
*.wasm*
3-
.DS_Store
1+
*.wasm
2+
*.wasm.*
3+
.DS_Store

test/.gitignore

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
/**/project
2-
/**/.gitignore
1+
# Example outputs
2+
project/
3+
.temp/
4+
.gdspx_web_server*.pid
5+
6+
# Example modules
37
go.mod
48
go.sum
5-
gop.sum
9+
10+
# Local ignores
11+
*/.gitignore

tutorial/.gitignore

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
/**/project
2-
/**/.gitignore
1+
# Example outputs
2+
project/
3+
.temp/
4+
.gdspx_web_server*.pid
5+
6+
# Example modules
37
go.mod
48
go.sum
9+
10+
# Local ignores
11+
*/.gitignore

0 commit comments

Comments
 (0)