Skip to content

Commit

Permalink
added .gitignore and .gitattributes files
Browse files Browse the repository at this point in the history
  • Loading branch information
unforgiven512 committed Jan 9, 2025
1 parent 763fe22 commit 7e6db35
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#
# .gitattributes
#

## GENERIC ##

* text=auto


## SOURCE CODE ##

*.c eol=lf diff=cpp
*.h eol=lf diff=cpp
*.cpp eol=lf diff=cpp
*.hpp eol=lf diff=cpp
*.cxx eol=lf diff=cpp
*.hxx eol=lf diff=cpp
*.c++ eol=lf diff=cpp
*.h++ eol=lf diff=cpp
*.cc eol=lf diff=cpp
*.hh eol=lf diff=cpp
*.ino eol=lf diff=cpp
*.h.in eol=lf diff=cpp


## SCRIPTS ##

Makefile eol=lf
*.makefile eol=lf
*.make eol=lf
*.mk eol=lf
CMakeLists.txt eol=lf
*.cmake eol=lf
*.py eol=lf diff=python
*.sh eol=lf
*.fish eol=lf
*.bat eol=crlf
*.cmd eol=crlf
*.ps1 eol=crlf
Doxyfile eol=lf
Doxyfile.in eol=lf
*.service.in eol=lf
*.cmake.in eol=lf


## TEXT & MARKUP ##

*.txt eol=crlf
*.md eol=crlf diff=markdown
*.mkdn eol=crlf diff=markdown
*.markdown eol=crlf diff=markdown
119 changes: 119 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
#
# .gitignore
#

## Temp & Backup Files ##

*~
*.bak
*.tmp


## Prerequisites ##

*.d


## 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
ardop2ofdm


## Debug files ##

*.dSYM/
*.su
*.idb
*.pdb


## Kernel Module Compile Results ##

*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf


## CMake build directories ##

build/
build-*/


## doxygen output ##

doc/doxygen/docbook/
doc/doxygen/html/
doc/doxygen/latex/
doc/doxygen/rtf/
doc/doxygen/xml/
doc/doxygen/doxyTags.xml
doc/doxygen/doxygen.log


## JetBrains IDE ##

.idea/
cmake-*/


## QT Creator IDE ##

CMakeLists.txt.user


## VSCode ##

.vscode/


## Misc Files ##

deploy_doxygen.fish

0 comments on commit 7e6db35

Please sign in to comment.