Skip to content

Commit

Permalink
add .gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
meleksabit committed Oct 8, 2024
1 parent 7139317 commit 0e3054d
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# PHP-specific
*.log
*.cache
*.php_cs.cache
vendor/
composer.lock
composer.phar

# HTML-specific
*.html
*.htm

# JavaScript-specific
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
dist/
build/
.eslintcache
*.js.map

# CSS-specific
*.css.map

# NASL-specific (assuming any generated files or unnecessary logs)
*.nasl
nasl-logs/

# Shell-specific
*.sh~
*.bash_history
*.bashrc
*.bash_profile
*.profile
*.zshrc
*.zprofile
*.zsh_history

# Common files
.idea/
.vscode/
.DS_Store
Thumbs.db
*.swp
*.swo
*.bak
*.tmp
*.lock

# Logs and databases
logs/
*.log
*.sql
*.sqlite

# Dependency directories
node_modules/
vendor/

# IDE-specific (JetBrains, VSCode)
.idea/
.vscode/
*.sublime-workspace
*.sublime-project

# Operating system files
.DS_Store
Thumbs.db

# Backup files
*.bak
*.orig

0 comments on commit 0e3054d

Please sign in to comment.