Codeforces/.gitignore
Matej Focko 2062f120cc
chore(rs): ignore skeleton in contests
Rust skeleton gets copied to ‹bin/› directory of Cargo project.

Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-07-24 23:03:28 +02:00

33 lines
338 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
*/src/main.rs
# Don't ignore skeletons in .common, but do all others
**/skeleton*
!.common/**/skeleton*