C & C++
Configuration - .deepsource.toml
.deepsource.toml
This section covers configuration specific to the C & C++
analyzer. Please make sure you read the general configuration guide first.
name
name
- Type: String
- Presence: mandatory
- Description: Shortcode of the analyzer.
- Example:
name = "cxx"
enabled
enabled
- Type: Boolean
- Presence: optional
- Description: Toggle whether this analyzer should be run.
- Example:
enabled = true
Sample config
version = 1
test_patterns = [
"tests/**"
]
exclude_patterns = [
"**/examples/**"
]
[[analyzers]]
name = "cxx"
enabled = true
Updated 25 days ago