llmrs 0.1.0

Unofficial Rust SDK for IBM WatsonX AI platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Clippy configuration for llmrs
#
# Note: Lint levels (warn, allow, deny) should be specified via:
# - Code attributes: #[allow(clippy::lint_name)]
# - Command-line: cargo clippy -- -W clippy::pedantic
# - Cargo.toml: [lints.clippy]
#
# This file only contains clippy-specific settings like thresholds.

# Cognitive complexity threshold
cognitive-complexity-threshold = 30

# Maximum number of arguments for a function
too-many-arguments-threshold = 8

# Maximum number of lines for a function
too-many-lines-threshold = 150