Skip to content

Commit 7174dc5

Browse files
committed
fix: Add lambda functions specific gitignore
1 parent 53ec8fc commit 7174dc5

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

functions/.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Locals
2+
.swp
3+
.idea
4+
.idea*
5+
.vscode/*
6+
*.DS_Store
7+
*.zip
8+
.env
9+
.envrc
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# Distribution / packaging
17+
.Python
18+
env/
19+
build/
20+
develop-eggs/
21+
dist/
22+
downloads/
23+
eggs/
24+
.eggs/
25+
lib/
26+
lib64/
27+
parts/
28+
sdist/
29+
var/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
34+
# Unit test / coverage reports
35+
.pytest*
36+
htmlcov/
37+
.tox/
38+
.coverage
39+
.coverage.*
40+
.cache
41+
nosetests.xml
42+
coverage.xml
43+
*.cover
44+
*.coverage
45+
.hypothesis/
46+
.mypy_cache/
47+
48+
# Lockfile
49+
Pipfile.lock
50+
51+
# Integration testing file
52+
.int.env
53+
pytest.ini

0 commit comments

Comments
 (0)