diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e424ad --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,49 @@ | |||
1 | # If you prefer the allow list template instead of the deny list, see community template: | ||
2 | # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore | ||
3 | # | ||
4 | # Binaries for programs and plugins | ||
5 | *.exe | ||
6 | *.exe~ | ||
7 | *.dll | ||
8 | *.so | ||
9 | *.dylib | ||
10 | |||
11 | # Test binary, built with `go test -c` | ||
12 | *.test | ||
13 | |||
14 | # Output of the go coverage tool, specifically when used with LiteIDE | ||
15 | *.out | ||
16 | |||
17 | # Dependency directories (remove the comment below to include it) | ||
18 | vendor/ | ||
19 | |||
20 | # Go workspace file | ||
21 | go.work | ||
22 | |||
23 | |||
24 | # Logs | ||
25 | logs | ||
26 | *.log | ||
27 | npm-debug.log* | ||
28 | yarn-debug.log* | ||
29 | yarn-error.log* | ||
30 | lerna-debug.log* | ||
31 | .pnpm-debug.log* | ||
32 | |||
33 | # Dependency directories | ||
34 | node_modules/ | ||
35 | |||
36 | # TypeScript cache | ||
37 | *.tsbuildinfo | ||
38 | |||
39 | # Optional REPL history | ||
40 | .node_repl_history | ||
41 | |||
42 | # dotenv environment variable files | ||
43 | .env | ||
44 | .env.development.local | ||
45 | .env.test.local | ||
46 | .env.production.local | ||
47 | .env.local | ||
48 | |||
49 | |||