-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sarah Aligbe <[email protected]>
- Loading branch information
1 parent
3eb3b67
commit 7e649cf
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Ignore node_modules directory | ||
node_modules | ||
|
||
# Ignore Python virtual environment directories | ||
venv | ||
.venv | ||
|
||
# Ignore MacOS system files | ||
.DS_Store | ||
|
||
# Ignore Git directories and files | ||
.git | ||
.gitignore | ||
|
||
# Ignore log files | ||
*.log | ||
|
||
# Ignore temporary files | ||
*.tmp | ||
*.swp | ||
*~ | ||
|
||
# Ignore build directories | ||
build/ | ||
dist/ | ||
|
||
# Ignore compiled Python files | ||
__pycache__/ | ||
*.pyc | ||
|
||
# Ignore Docker-related files (uncomment if needed) | ||
# Dockerfile | ||
# docker-compose.yml | ||
|
||
# Ignore coverage reports | ||
coverage/ | ||
*.cover | ||
|
||
# Ignore IDE and editor-specific files | ||
.vscode/ | ||
.idea/ | ||
*.iml | ||
|
||
# Ignore test results | ||
test-output/ | ||
reports/ |