Update '.gitignore'
parent
392297f508
commit
ae5e22d3a5
|
@ -1,29 +1,80 @@
|
|||
# global gitignore
|
||||
# Global gitignore
|
||||
# ______________________________
|
||||
|
||||
# general
|
||||
# General
|
||||
.idea/
|
||||
log/
|
||||
*.log
|
||||
|
||||
# node
|
||||
# Node
|
||||
npm-debug.log
|
||||
node_modules
|
||||
|
||||
# python
|
||||
# Python
|
||||
*.pyc
|
||||
|
||||
# folder view
|
||||
# Folder view
|
||||
.DS_Store
|
||||
Desktop.ini
|
||||
|
||||
# thumbnail cache
|
||||
# Thumbnail cache
|
||||
Thumbs.db
|
||||
|
||||
# temp files
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# object files
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Linker output
|
||||
*.ilk
|
||||
*.map
|
||||
*.exp
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
/sent
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
# Kernel Module Compile Results
|
||||
*.mod*
|
||||
*.cmd
|
||||
.tmp_versions/
|
||||
modules.order
|
||||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
||||
|
||||
# Temp files
|
||||
*.swo
|
||||
*.swp
|
||||
*~
|
||||
|
|
Loading…
Reference in New Issue