Jesús Pérez dd68d190ef ci: Update pre-commit hooks configuration
- Exclude problematic markdown files from linting (existing legacy issues)
- Make clippy check less aggressive (warnings only, not -D warnings)
- Move cargo test to manual stage (too slow for pre-commit)
- Exclude SVG files from end-of-file-fixer and trailing-whitespace
- Add markdown linting exclusions for existing documentation

This allows pre-commit hooks to run successfully on new code without
blocking commits due to existing issues in legacy documentation files.
2026-01-11 21:32:56 +00:00

14 lines
521 B
Rust

use criterion::{criterion_group, criterion_main, Criterion};
/// Storage benchmarks for vapora-tracking
///
/// Note: These are placeholder benchmarks that can be extended with async benchmarks
/// using criterion's async support with `b.to_async()`.
fn storage_placeholder(_c: &mut Criterion) {
// Placeholder: Full async benchmarks require tokio runtime setup
// This can be extended in the future with criterion 0.5+ async support
}
criterion_group!(benches, storage_placeholder,);
criterion_main!(benches);