haiku/.gitignore
Alexander von Gluck IV 3634f14235 docs/develop/ide: A quick guide for haiku code completion
* Works under a Linux "cross-compile" environment
* We can't check in compile_commands.json unforunetly because it
  highly depends on your build environment
* An in-tree .clangd is a thing, but our includes are complex
  and directory-spefific.
* Thanks to Pulkomandy for adding the flag to jam to do this!

Change-Id: I3be4084c43f7b822bb04ea7ec527c5fbe03d7289
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7158
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com>
2023-12-05 20:02:07 +00:00

28 lines
685 B
Plaintext

# Files generated by our buildsystem or reserved for local changes by the user
generated*
build/jam/UserBuildConfig
build/user_config_headers
# KDE backup files ending with a ~ (created by KDE and Qt text editors)
*~
# Vim temporary/lock files
.*.sw?
# Configuration directories for Visual Studio Code
.vscode
# Configuration directories for IntelliJ IDEA code editors
.idea
# compiled/optimized Python (created by Python optimizer when running scripts)
*.pyc
*.pyo
# Mac OS X directory attributes (created by Mac OS X when opening files or
# directories)
.DS_Store
# Project settings of the Genio IDE
.genio
# clangd related tooling for IDE code completion
compile_commands.json