git/ignore 477 B raw
1
# Python specific
2
.venv/
3
.mypy_cache/
4
.pytest_cache/
5
__pycache__/
6
.hypothesis/
7
.ruff_cache/
8
.ropeproject/
9
10
# Typescript
11
node_modules/
12
dist/
13
*.tsbuildinfo
14
.npm
15
.yarn
16
yarn-error.log
17
npm-debug.log
18
.env
19
.env.local
20
.env.development.local
21
.env.test.local
22
.env.production.local
23
24
# Rust
25
/target/
26
**/*.rs.bk
27
Cargo.lock
28
.cargo/
29
30
# Go
31
/bin/
32
/pkg/
33
/vendor/
34
*.exe
35
*.exe~
36
*.dll
37
*.so
38
*.dylib
39
*.test
40
*.out
41
go.work
42
43
# Common
44
.DS_Store
45
.idea/
46
.vscode/
47
*.swp
48
*.swo
49
.project
50
.classpath
51
.settings/