mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-09 06:27:45 +00:00
d7dbd7078a
- Updated event handler signatures to use TValueEventArgs for consistency in Mama, Mgdi, Pwma, Rma, Sma, Ssf, Super, T3, Tema, Trima, Usf, Vidya, Wma, and Atr classes. - Enhanced argument validation by specifying parameter names in exceptions for clarity. - Adjusted tests to align with new event handler signatures. - Improved code readability and maintainability by using structured records and lambda expressions.
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
#-------------------------------------------------------------------------------#
|
|
# Qodana analysis is configured by qodana.yaml file #
|
|
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
|
#-------------------------------------------------------------------------------#
|
|
version: "1.0"
|
|
profile:
|
|
name: qodana.recommended
|
|
|
|
linter: jetbrains/qodana-dotnet:2025.3
|
|
|
|
dotnet:
|
|
solution: QuanTAlib.sln
|
|
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
|