Files
markbase/.clippy.toml
Warren e3d6b60825 feat: MarkBase initial version
Phase 1 (Infrastructure):
- Docs: README.md, AGENTS.md, CHANGELOG.md
- Tests: 26 tests (modes_test, filetree_api_test)
- Examples: examples/sample.md, sample.json
- CI/CD: .gitea/workflows/test.yml, release.yml
- Runner: configuration scripts and guides

Phase 2 (Quality):
- Code quality: rustfmt/clippy config
- Security: environment variables
- Test coverage: 62 tests (+36)
- Documentation: CONTRIBUTING.md, docs/api.yaml
- Showcase: demo_features.md, developer_quickstart.md

Test coverage: 75%
Test pass rate: 100%
2026-05-16 15:37:37 +08:00

13 lines
244 B
TOML

# Clippy lint配置
#允許的最低Rust版本
msrv = "1.92"
# cognitive-complexity限制
cognitive-complexity-threshold = 25
#類型複雜度限制
type-complexity-threshold = 250
# too-many-arguments限制
too-many-arguments-threshold = 7