Skip to content

Commit 9b25d3d

Browse files
authored
Merge pull request #13 from getsentry/lms/chore-gitignore
chore: Update `.gitignore` to ignore commonly ignored files and folders
2 parents 4fc5813 + 5e7c881 commit 9b25d3d

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,40 @@
1+
# Rust
12
/target
3+
*.rs.bk
4+
5+
# Node.js
6+
node_modules/
7+
dist/
8+
out/
9+
build/
10+
*.tsbuildinfo
11+
12+
# Environment files
13+
.env
14+
.env.*
15+
!.env.example
16+
17+
# Logs
18+
logs/
19+
*.log
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*
23+
24+
# OS files
25+
.DS_Store
26+
Thumbs.db
27+
*.swp
28+
*.swo
29+
*~
30+
31+
# IDE/Editor
32+
.idea/
33+
.vscode/
34+
*.sublime-project
35+
*.sublime-workspace
36+
37+
# Coverage & Testing
38+
coverage/
39+
.nyc_output/
40+
*.lcov

0 commit comments

Comments
 (0)