-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
105 lines (85 loc) · 2.06 KB
/
.gitignore
File metadata and controls
105 lines (85 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Deno lock file (optional, depends on team preference)
# If you use a lock file but don't want to commit it, uncomment the line below.
# deno.lock
# Logs
# Log files from various tools and debugging sessions.
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# OS generated files
# These are system files created by macOS, Windows, and Linux.
=======
# Deno / JavaScript
# -------------------------------------------------------------------
# Compiled executables from `deno compile`
# These are platform-specific and should be built during a release process.
*.exe
*.out
# Bundled output from the deprecated `deno bundle`
# Modern workflows use `deno compile` or other bundlers.
bundle.js
bundle.js.map
# Local environment variables.
# Contains sensitive information like API keys. Never commit this.
.env
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# Dependency directories
# While Deno doesn't use node_modules, other tools in your toolchain might.
node_modules/
dist/
dist-ssr/
# Testing & Coverage
# -------------------------------------------------------------------
coverage/
.nyc_output/
# Operating System specific files
# -------------------------------------------------------------------
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Editor directories and files
# Configuration files for popular code editors like VS Code and JetBrains IDEs.
.idea
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Environment variables
# Never commit environment files, as they may contain sensitive secrets.
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
=======
# IDE / Editor specific files
# -------------------------------------------------------------------
# VSCode
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# JetBrains / WebStorm
.idea/
# Vim
*.swp
*.swo
# Deno Language Server Cache
# Optional: Sometimes useful to ignore if it causes issues, but generally small.
# .deno_cache/