-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
3 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,4 +1,52 @@ | ||
.vscode | ||
# Ignore files and directories generated by your IDE or text editor | ||
.idea/ | ||
.vscode/ | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
# Ignore operating system files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Ignore log and temporary files | ||
*.log | ||
*.swp | ||
*.tmp | ||
|
||
# Ignore compiled code and binaries | ||
*.class | ||
*.jar | ||
*.war | ||
*.ear | ||
*.pyc | ||
*.pyo | ||
__pycache__/ | ||
|
||
# Ignore environment-specific files | ||
.env | ||
vendor | ||
node_modules | ||
|
||
# Ignore dependencies | ||
/node_modules | ||
/bower_components | ||
/vendor | ||
|
||
# Ignore build and distribution directories | ||
/dist/ | ||
/build/ | ||
/out/ | ||
|
||
# Ignore configuration files that may contain sensitive information | ||
*.config | ||
*.conf | ||
*.ini | ||
|
||
# Ignore package-lock.json, yarn.lock, etc. | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Ignore Jekyll build directory | ||
_site/ | ||
|
||
# Ignore miscellaneous files | ||
.DS_Store | ||
Thumbs.db |