diff --git a/.gitignore b/.gitignore index 0e5575c..58a026d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,75 +4,9 @@ node_modules/ .pnp.js yarn.lock package-lock.json - -# Testing -/coverage -.nyc_output - -# Production -/build -/dist -/out - -# Development -.env -.env.local -.env.development.local -.env.test.local -.env.production.local - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# IDEs and editors -/.idea -.project -.classpath -.c9/ -*.launch -.settings/ -*.sublime-workspace -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json - -# OS generated files -.DS_Store -.DS_Store? -._* -.Spotlight-V100 -.Trashes -ehthumbs.db -Thumbs.db - -# Optional npm cache directory .npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file .yarn-integrity -# TypeScript -*.tsbuildinfo - -# Next.js -.next/ -out/ - # Python __pycache__/ *.py[cod] @@ -82,6 +16,7 @@ __pycache__/ env/ build/ develop-eggs/ +dist/ downloads/ eggs/ .eggs/ @@ -95,6 +30,47 @@ wheels/ .installed.cfg *.egg +# Testing & Coverage +/coverage +.nyc_output + +# Production & Build +/build +/dist +/out +.next/ +out/ + +# Development & Environment +.env +.env.local +.env.development.local +.env.test.local +.env.production.local +config.local.js +config.dev.js + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# IDEs and Editors +/.idea/ +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + # Java *.class *.war @@ -115,20 +91,35 @@ pom.xml.next release.properties dependency-reduced-pom.xml -# Backup files +# TypeScript +*.tsbuildinfo + +# OS Generated Files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Backup Files *.bak *.swp *.swo *~ -# Local development configuration files -config.local.js -config.dev.js +# Optional REPL history +.node_repl_history -# Large media files +# Media & Large Files *.mp4 *.tiff *.avi *.flv *.mov *.wmv +*.tgz + +# Optional eslint cache +.eslintcache \ No newline at end of file