Skip to content

Commit afb7759

Browse files
committed
chore: organize and add comments to .gitignore
1 parent db72ef4 commit afb7759

File tree

1 file changed

+48
-19
lines changed

1 file changed

+48
-19
lines changed

.gitignore

Lines changed: 48 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,65 @@
1-
.idea
2-
venv*
3-
.venv*
4-
env*
1+
2+
```gitignore
3+
# Byte-compiled / optimized / DLL files
4+
*.pyc
5+
*.so
6+
7+
# Distribution / packaging
8+
*.egg
9+
*.egg-info
10+
!/tests/**/*.egg
11+
/*.egg-info
12+
/dist/*
13+
build
14+
_build
15+
.mypy_cache
16+
.cache
17+
.eggs
18+
mellon.egg-info
19+
pip-wheel-metadata
520
temp
621
__pycache__
722
*.pyc
8-
.DS_Store
923
.cache
24+
.venv*
25+
venv*
26+
env*
27+
/releases/*
28+
/poetry.toml
29+
30+
# Unit test / coverage reports
1031
.coverage
1132
coverage.xml
33+
.coverage
34+
.tox
1235
.pytest_cache
13-
.eggs
14-
mellon.egg-info
15-
scratch.py
16-
*.egg-info
17-
firebase.json
18-
build
19-
dist
20-
# Ignoring this for now
21-
/scripts
22-
# Ignoring log files generated by tests
36+
37+
# Logs
2338
*.log
39+
40+
# OS generated files
41+
.DS_Store
42+
43+
# IDE / Editor directories and files
44+
.idea/*
45+
.python-version
46+
.vscode/*
47+
.history # vscode local history extension
48+
2449
# Ignore some of the files that should be downloaded/generated for evaluation
2550
original_dataset
2651
eval_outputs
2752
/**/chitchat/user.co
2853
/**/banking/user.co
29-
.mypy_cache
30-
.python-version
3154
local_cache
55+
3256
# Ignore example configs created in user guides
3357
docs/user_guides/llm/vertexai/config
3458
docs/**/config
35-
# vscode local history extension
36-
.history
59+
60+
# Ignoring this for now
61+
/scripts
62+
63+
# Ignoring log files generated by tests
64+
firebase.json
65+
scratch.py

0 commit comments

Comments
 (0)