1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:49:47 +01:00
RIOT/.gitignore

101 lines
1.6 KiB
Plaintext
Raw Normal View History

# Object files
2010-11-04 11:33:42 +01:00
*.o
# Target files
*.elf
# Documentation artifacts
2010-11-04 11:33:42 +01:00
doc/doxygen/html
doc/doxygen/latex
doc/doxygen/man
2013-08-08 14:51:33 +02:00
doc/doxygen/*.log
doc/doxygen/*.db
doc/doxygen/*.tmp
# bin (e.g.:build directory) and .bin files
bin
*.bin
# Build directory
/build
# AFL findings
fuzzing/**/findings/
# Backup files
2013-04-29 13:17:22 +02:00
*~
2013-08-08 14:51:33 +02:00
*.orig
2020-06-03 10:39:03 +02:00
.*.swn
.*.swo
2013-08-08 14:51:33 +02:00
.*.swp
2021-08-10 15:30:53 +02:00
*.save
*.rej
2020-04-01 12:45:08 +02:00
\#*\#
2014-04-08 22:36:13 +02:00
cachegrind.out*
# Eclipse workspace files
.project
.cproject
.settings
2014-11-20 12:42:13 +01:00
.idea
# KDevelop4 project files
.kdev4
*.kdev4
# Codelite (among others) project files
*.project
# Visual Studio Code user settings
.vscode/*
!.vscode/settings.json
# ctags index files
tags
# GDB initialization scripts
.gdbinit
# Eclipse symbol file (output from make eclipsesym)
eclipsesym.xml
/toolchain
# Ignore created Arduino sketch files
_sketches.cpp
# local override files
Makefile.local
2015-12-03 11:23:17 +01:00
2015-11-28 15:15:34 +01:00
# Vagrant
.vagrant
2016-01-15 13:59:45 +01:00
# clang-complete command line argument lists (Vim: clang-complete, Atom: linter-clang, autocomplete-clang addons)
.clang_complete
2016-01-15 14:19:13 +01:00
# YouCompleteMe (https://github.com/Valloric/YouCompleteMe)
.ycm_extra_conf.py
# Python compiled files
*.pyc
# Ignore download cache
2017-02-23 17:34:32 +01:00
.dlcache
# scan-build artifacts
scan-build/
# compile_and_test_for_boards default "results" directory
results/
2019-06-28 22:57:38 +02:00
# mypy artifacts
.mypy_cache/
2018-08-26 22:28:31 +02:00
# Clangd compile flags (language server)
compile_commands.json
compile_flags.txt
2021-03-17 09:55:00 +01:00
# cache files of clangd (and probably other tools)
.cache/
# generated by clang-check for C++ code
*.plist
# suit manifest keys
keys/
2019-11-26 21:20:43 +01:00
# clangd language server
.clangd/
2021-08-31 14:57:09 +02:00
# custom clang-tidy flags, also used when using clangd language server
.clang-tidy
# Environments
.venv
venv/