1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-07 20:16:57 +02:00
LeetCode/.gitignore
Matej Focko 970869babd
chore(gitignore): add compiled C++ and cache
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-08-18 23:19:49 +02:00

14 lines
183 B
Text

playground
# ignore compiled files
**/a.out
# ignore VSCode, cause screw it
.vscode
# ignore compiled C++ files with given names
cpp/*
!cpp/*.cpp
# ignore cache directory
.cache/