[Python-ideas] Add .cache and compile_commands.json to .gitignote

2021-08-19 Thread Stephen J. Turnbull
Jack DeVries writes: > What does everyone think? Can we add these two items to the .gitignore: > > - `.cache` > - `compile_commands.json` I don't see any cost to this -- .cache is uncomfortably generic, but given the semantics of "cache" gitignoring it seems a good idea. ISTM rather than ha

[Python-ideas] Add .cache and compile_commands.json to .gitignote

2021-08-19 Thread Jack DeVries
Hi All, I use clangd. Clangd creates a .cache directory, and there are also tools for generating a compile_commands.json file which tells clangd how to behave. I did a quick check, and there are no naming collisions with other files in the cpython project. What does everyone think? Can we add the