Codeforces/.gitignore
Matej Focko bbe76f33d6
chore(rs): create a template and adjust gitignore
Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-07-23 21:33:09 +02:00

32 lines
324 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
# Rust
!.common/rust/**
!*.rs
# Don't ignore skeletons in .common, but do all others
**/skeleton*
!.common/**/skeleton*