Skip to content

Commit

Permalink
chore: .gitignore cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMiguel committed Feb 28, 2025
1 parent b00b5fb commit 965a23a
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .gitignore
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

0 comments on commit 965a23a

Please sign in to comment.