| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- # These are some examples of commonly ignored file patterns.
- # You should customize this list as applicable to your project.
- # Learn more about .gitignore:
- # https://www.atlassian.com/git/tutorials/saving-changes/gitignore
- # Node artifact files
- node_modules/
- dist/
- # Compiled Java class files
- *.class
- # Compiled Python bytecode
- *.py[cod]
- # Log files
- *.log
- # Package files
- *.jar
- # Maven
- target/
- dist/
- # JetBrains IDE
- .idea/
- # Unit test reports
- TEST*.xml
- # Generated by MacOS
- .DS_Store
- # Generated by Windows
- Thumbs.db
- # Applications
- *.app
- *.exe
- *.war
- # Large media files
- *.mp4
- *.tiff
- *.avi
- *.flv
- *.mov
- *.wmv
- *.swp
- *.*~
- project.lock.json
- .DS_Store
- *.pyc
- nupkg/
- # Visual Studio Code
- .vscode/
- # Rider
- .idea/
- # Visual Studio
- .vs/
- # Fleet
- .fleet/
- # Code Rush
- .cr/
- # User-specific files
- *.suo
- *.user
- *.userosscache
- *.sln.docstates
- # Build results
- [Dd]ebug/
- [Dd]ebugPublic/
- [Rr]elease/
- [Rr]eleases/
- x64/
- x86/
- build/
- bld/
- [Bb]in/
- [Oo]bj/
- [Oo]ut/
- msbuild.log
- msbuild.err
- msbuild.wrn
|