qmk-dactyl-manuform-a/.gitignore

94 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2021-07-02 08:08:34 +02:00
# Junk files
*.bak
*.swp
*~
.DS_Store
# Build artifacts
.clang_complete
.build/
2010-08-10 06:45:28 +02:00
*.elf
*.log
2010-08-10 06:45:28 +02:00
*.lss
*.lst
*.map
2021-07-02 08:08:34 +02:00
*.o
*.stackdump
2010-08-10 06:45:28 +02:00
*.sym
2021-07-02 08:08:34 +02:00
# QMK-specific
api_data/v1
doxygen/
2021-07-02 08:08:34 +02:00
quantum/version.h
*.bin
*.eep
*.hex
*.qmk
*.uf2
# Old-style QMK Makefiles
/keyboards/*/Makefile
/keyboards/*/*/Makefile
2017-11-02 01:59:44 +01:00
/keyboards/*/*/*/Makefile
/keyboards/*/*/*/*/Makefile
/keyboards/*/*/*/*/*/Makefile
/keyboards/*/keymaps/Makefile
2017-11-02 01:59:44 +01:00
/keyboards/*/*/keymaps/Makefile
/keyboards/*/*/*/keymaps/Makefile
/keyboards/*/*/*/*/keymaps/Makefile
/keyboards/*/*/*/*/*/keymaps/Makefile
# Eclipse/PyCharm/Other IDE Settings
2021-07-02 08:08:34 +02:00
*.iml
.browse.VC.db*
.cproject
2021-07-02 08:08:34 +02:00
.idea
.idea/
.project
2016-02-26 20:03:19 +01:00
.settings/
2021-07-02 08:08:34 +02:00
.vagrant/
# ?
.dep
.history/
build/
cmake-build-debug
CMakeLists.txt
# Let these ones be user specific, since we have so many different configurations
*.code-workspace
2021-07-02 08:08:34 +02:00
.stfolder
.tags
.vscode/c_cpp_properties.json
2021-07-02 08:08:34 +02:00
.vscode/ipch/
.vscode/last.sql
.vscode/launch.json
.vscode/tasks.json
.vscode/temp.sql
2021-07-02 08:08:34 +02:00
tags
2017-06-11 21:36:28 +02:00
2021-07-02 08:08:34 +02:00
# Ignore image files
*.gif
*.jpg
2021-07-02 08:08:34 +02:00
*.png
2021-07-02 08:08:34 +02:00
# Things Travis sees
/.vs
2021-07-02 08:08:34 +02:00
id_rsa_*
secrets.tar
2021-07-02 08:08:34 +02:00
# Python things
__pycache__
.python-version
2021-07-02 08:08:34 +02:00
# Prerequisites for updating ChibiOS
/util/fmpp*
2020-07-16 08:45:50 +02:00
# Allow to exist but don't include it in the repo
user_song_list.h
New CLI subcommand to create clang-compatible compilation database (`compile_commands.json`) (#14370) * pulled source from dev branch * missed a file from origin * formatting * revised argument names. relaxed matching rules to work for avr too * add docstrings * added docs. tightened up regex * remove unused imports * cleaning up command file. use existing qmk dir constant * rename parser library file * move lib functions into command file. there are only 2 and they aren't large * currently debugging... * more robustly find config * updated docs * remove unused imports * reuse make executable from the main make command * pulled source from dev branch * missed a file from origin * formatting * revised argument names. relaxed matching rules to work for avr too * add docstrings * added docs. tightened up regex * remove unused imports * cleaning up command file. use existing qmk dir constant * rename parser library file * move lib functions into command file. there are only 2 and they aren't large * currently debugging... * more robustly find config * updated docs * remove unused imports * reuse make executable from the main make command * remove MAKEFLAGS from environment for better control over process management * Update .gitignore Co-authored-by: Michael Forster <forster@google.com> * add a usage line to docs * doc change as suggested Co-authored-by: Nick Brassel <nick@tzarc.org> * rename command * remove debug print statements * generate-compilation-database: fix arg handling * generate-comilation-db: improve error handling * use cli.run() instead of Popen() Co-authored-by: Xton <cdewan@apple.com> Co-authored-by: Christon DeWan <cmdpix@mac.com> Co-authored-by: Michael Forster <forster@google.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2021-09-16 06:59:57 +02:00
# clangd
compile_commands.json
.clangd/
.cache/