-
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
1 parent
b00b5fb
commit 965a23a
Showing
1 changed file
with
18 additions
and
8 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,22 +1,32 @@ | ||
## Editor directory | ||
## Editor directories | ||
**/.vscode | ||
**/.idea | ||
**/.cache | ||
|
||
## Ignore NPM 'node_modules' directory | ||
## Ignore Node.js and Composer dependencies | ||
**/node_modules | ||
|
||
## Ignore Composer 'vendor' directory | ||
**/vendor | ||
|
||
## Ignore log files | ||
## Ignore logs and debug files | ||
**/logs | ||
**/log | ||
yarn-error.log* | ||
npm-debug.log* | ||
*.log | ||
|
||
## PHPUnit result cache | ||
.phpunit.result.cache | ||
|
||
## Ignore generated source maps | ||
## Ignore generated files | ||
*.map | ||
*.bak | ||
|
||
## Other files to ignore (e.g. credentials) | ||
## Ignore environment file (secrets inside) | ||
.env | ||
|
||
## Ignore NPM configuration file | ||
.npmrc | ||
**/*.bak | ||
|
||
## Ignore storage and miscellaneous files | ||
**/storage | ||
**/.misc |