mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-15 09:08:04 +00:00
refactor: enhance Bilateral and SMA indicators to handle edge cases and improve state management refactor: clean up whitespace and formatting in various test files for consistency
61 lines
1.6 KiB
YAML
61 lines
1.6 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
|
|
|
|
# Disabled failure conditions - Qodana should never fail the build
|
|
# Issues are reported for informational purposes only
|
|
# failureConditions:
|
|
# severityThresholds:
|
|
# critical: -1
|
|
# high: -1
|
|
# moderate: -1
|
|
# low: -1
|
|
# 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
|