| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # Logs
- logs
- *.log
- # Node.js related
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Dependency directories
- pids
- *.pid
- *.seed
- *.pid.lock
- # Dependency testing
- lib-cov
- # Compiled binary addons
- *.o
- *.lo
- *.la
- *.al
- # Output of `npm build`
- build/
- # Output of `node-gyp`
- build/Release
- # .lock-wscript
- .lock-wscript
- # Yarn Integrity file
- .yarn-integrity
- # dotenv environment variables file
- .env
- # npm package lock
- package-lock.json
- # macOS files
- .DS_Store
- # Windows thumbnail cache files
- Thumbs.db
- # Editor-specific files
- .vscode/
- .idea/
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.sw?
- # Sublime Text specific files
- *.sublime-workspace
- *.sublime-project
- # WebStorm workspace
- .idea/workspace.xml
- # JetBrains IDEs (PyCharm, PhpStorm, RubyMine, etc)
- .idea/
- # Test coverage directory used by tools like istanbul
- coverage/
- # Docs folder
- docs/
|