Codeforces/.gitignore
Matej Focko 97921c6340
chore: improve gitignore
* ignore scripts everywhere else apart from root and common
* ignore skeletones everywhere else apart from common

Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-07-10 11:32:16 +02:00

28 lines
No EOL
292 B
Text

*
!**/
!.gitignore
# Helper scripts
!/*.sh
!.common/**/*.sh
# Archived problem sets
!*.html
# C++
!.common/cpp/**
!*.cpp
!*.hpp
# but ignore catch
.common/cpp/catch*
# Java
!*.java
# Kotlin
!*.kt
# Don't ignore skeletons in .common, but do all others
**/skeleton*
!.common/**/skeleton*