-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .gitignore to exclude common items for issue #69 Co-authored-by: John Bampton <[email protected]>
- Loading branch information
1 parent
e053a06
commit 4ecd713
Showing
1 changed file
with
52 additions
and
14 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 |
---|---|---|
@@ -1,23 +1,61 @@ | ||
# Node.js | ||
# Dependency directories | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
bower_components/ | ||
|
||
# Build directories | ||
dist/ | ||
build/ | ||
|
||
# Logs | ||
logs/ | ||
*.log | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Build output | ||
dist/ | ||
build/ | ||
# Operating System files | ||
.DS_Store # macOS | ||
Thumbs.db # Windows | ||
|
||
# IDE/Editor settings | ||
.vscode/ | ||
.idea/ | ||
*.iml | ||
|
||
# Environment variables | ||
# Python specific | ||
__pycache__/ | ||
*.py[cod] | ||
*.pyo | ||
*.pyd | ||
env/ | ||
venv/ | ||
*.egg-info/ | ||
|
||
# Java specific | ||
*.class | ||
*.jar | ||
*.war | ||
*.ear | ||
|
||
# C/C++ specific | ||
*.o | ||
*.exe | ||
*.out | ||
*.a | ||
|
||
# Temporary files | ||
tmp/ | ||
temp/ | ||
*.tmp | ||
|
||
# Environment variable files | ||
.env | ||
.env.local | ||
|
||
# IDE files | ||
.idea/ | ||
.vscode/ | ||
.DS_Store | ||
# Coverage reports | ||
coverage/ | ||
*.cover | ||
|
||
# Jupyter Notebook checkpoints | ||
.ipynb_checkpoints/ | ||
|
||
# Other common exclusions | ||
*.bak | ||
*.swp | ||
*~ |