Skip to content

Commit

Permalink
chore: organize and add comments to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Pouyanpi committed Oct 26, 2024
1 parent db72ef4 commit afb7759
Showing 1 changed file with 48 additions and 19 deletions.
67 changes: 48 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,65 @@
.idea
venv*
.venv*
env*

```gitignore
# Byte-compiled / optimized / DLL files
*.pyc
*.so

# Distribution / packaging
*.egg
*.egg-info
!/tests/**/*.egg
/*.egg-info
/dist/*
build
_build
.mypy_cache
.cache
.eggs
mellon.egg-info
pip-wheel-metadata
temp
__pycache__
*.pyc
.DS_Store
.cache
.venv*
venv*
env*
/releases/*
/poetry.toml

# Unit test / coverage reports
.coverage
coverage.xml
.coverage
.tox
.pytest_cache
.eggs
mellon.egg-info
scratch.py
*.egg-info
firebase.json
build
dist
# Ignoring this for now
/scripts
# Ignoring log files generated by tests

# Logs
*.log

# OS generated files
.DS_Store

# IDE / Editor directories and files
.idea/*
.python-version
.vscode/*
.history # vscode local history extension

# Ignore some of the files that should be downloaded/generated for evaluation
original_dataset
eval_outputs
/**/chitchat/user.co
/**/banking/user.co
.mypy_cache
.python-version
local_cache

# Ignore example configs created in user guides
docs/user_guides/llm/vertexai/config
docs/**/config
# vscode local history extension
.history

# Ignoring this for now
/scripts

# Ignoring log files generated by tests
firebase.json
scratch.py

0 comments on commit afb7759

Please sign in to comment.