2025-12-27 15:46:28 -08:00
|
|
|
#-------------------------------------------------------------------------------#
|
2025-12-03 09:27:29 -08:00
|
|
|
# Qodana analysis is configured by qodana.yaml file #
|
|
|
|
|
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
|
|
|
|
#-------------------------------------------------------------------------------#
|
|
|
|
|
version: "1.0"
|
|
|
|
|
profile:
|
2025-12-27 15:46:28 -08:00
|
|
|
name: qodana.recommended
|
2025-12-03 09:27:29 -08:00
|
|
|
|
2025-12-27 15:46:28 -08:00
|
|
|
linter: jetbrains/qodana-dotnet:2025.3
|
2025-12-22 12:50:41 -08:00
|
|
|
|
|
|
|
|
dotnet:
|
2025-12-22 15:31:38 -08:00
|
|
|
solution: QuanTAlib.sln
|
2025-12-27 15:46:28 -08:00
|
|
|
frameworks: "net10.0"
|
|
|
|
|
configuration: Release
|
|
|
|
|
|
|
|
|
|
failureConditions:
|
|
|
|
|
severityThresholds:
|
|
|
|
|
critical: 0
|
|
|
|
|
high: 10
|
|
|
|
|
moderate: 50
|
|
|
|
|
low: 100
|
|
|
|
|
info: -1
|
|
|
|
|
|
|
|
|
|
exclude:
|
|
|
|
|
- name: All
|
|
|
|
|
paths:
|
|
|
|
|
- "**/bin/**"
|
|
|
|
|
- "**/obj/**"
|
|
|
|
|
- "**/packages/**"
|
|
|
|
|
- "**/TestResults/**"
|
|
|
|
|
- "**/.vs/**"
|
|
|
|
|
- "**/.vscode/**"
|
|
|
|
|
- "**/.idea/**"
|
|
|
|
|
- "**/.git/**"
|
|
|
|
|
- ".github/**"
|
|
|
|
|
- "**/.github/**"
|
|
|
|
|
- ".github/TradingPlatform.BusinessLayer.xml"
|
|
|
|
|
- "**/TradingPlatform.BusinessLayer.xml"
|
|
|
|
|
- "**/.agent/**"
|
|
|
|
|
- "**/.codacy/**"
|
|
|
|
|
- "**/.config/**"
|
|
|
|
|
- "**/.clinerules/**"
|
|
|
|
|
- "**/.idea/**"
|
|
|
|
|
- "**/.qodana/**"
|
|
|
|
|
- "**/.sonarlint/**"
|
|
|
|
|
- "**/coverage/**"
|
|
|
|
|
- "**/CoverageReport/**"
|
|
|
|
|
- "**/archive/**"
|
|
|
|
|
- "**/notebooks/**"
|
|
|
|
|
- "**/*.Designer.cs"
|
|
|
|
|
- "**/*.generated.cs"
|
|
|
|
|
- "**/results/**"
|
|
|
|
|
- "**/TestResults/**"
|
|
|
|
|
- "**/BenchmarkDotNet.Artifacts/**"
|
|
|
|
|
- name: InvalidXmlDocComment
|
|
|
|
|
- name: EnforceIfStatementBraces
|
|
|
|
|
- name: CheckNamespace
|
|
|
|
|
- name: LoopCanBeConvertedToQuery
|