-
Notifications
You must be signed in to change notification settings - Fork 4
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
13 additions
and
11 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,37 +1,39 @@ | ||
# Ignore application specific files | ||
# App-specific files | ||
.env | ||
|
||
# Ignore Node.js specific files and directories | ||
# Node.js files | ||
node_modules/ | ||
npm-debug.log | ||
package-lock.json | ||
|
||
# Ignore log files | ||
*.lock | ||
# Log, archive, and exec files | ||
*.log | ||
*.zip | ||
*.rar | ||
*.exe | ||
*.ico | ||
*.txt | ||
|
||
# Ignore editor and IDE specific files | ||
# Editor and IDE files | ||
.vscode/ | ||
.idea/ | ||
*.sublime-* | ||
|
||
# Ignore test directories and files | ||
test/ | ||
# Test files | ||
test/** | ||
test*.* | ||
|
||
# Ignore database files | ||
# Database files | ||
*.sqlite3 | ||
|
||
# Ignore dependencies, config files, and lock files | ||
# Config and dependency files | ||
jest.config.js | ||
.eslintrc.js | ||
.npmrc | ||
.npmignore | ||
|
||
# Ignore text editor backup files | ||
*.bak | ||
# Backup files | ||
*.bak | ||
|
||
# Build files (dist) | ||
**/build/** |