forked from microsoft/mssql-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (49 loc) · 756 Bytes
/
.gitignore
File metadata and controls
62 lines (49 loc) · 756 Bytes
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
# Ignore pycache files and folders
__pycache__/
**/__pycache__/
*.pyc
# Ignore pytest cache
.pytest_cache/
**/.pytest_cache/
# Ignore log files
*.log
# Ignore Visual Studio files
mssql_python/.vs
.vs
# Ignore test-*.xml files
test-*.xml
**/test-**.xml
# Ignore the build & mssql_python.egg-info directories
build/
**/build/
mssql_python.egg-info/
# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
dist/
build/
*.egg-info/
# C extensions
*.so
*.pyd
*.pdb
# IDE files
.vscode/
.idea/
*.swp
# .DS_Store files
.DS_Store
# wheel files
*.whl
*.tar.gz
*.zip
# Dockerfiles and images (root only)
/Dockerfile*
/docker-compose.yml
/docker-compose.override.yml
/docker-compose.*.yml
# Virtual environments
*venv*/
**/*venv*/