Skip to content

Commit

Permalink
Merge branch 'v3' into v3-increments
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Jan 3, 2024
2 parents 24fce98 + 0faa3f4 commit f5288b5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ root = true
# global baselines
[*]
charset = utf-8
end_of_line = crlf
end_of_line = lf

indent_style = space
indent_size = 2
Expand All @@ -25,7 +25,7 @@ indent_size = 2
[*.{cs,vb}]
tab_width = 4
indent_size = 4
end_of_line = crlf
end_of_line = lf

#### Naming styles ####

Expand Down
16 changes: 16 additions & 0 deletions src/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
Scope = "member",
Target = "~F:Skender.Stock.Indicators.ChandelierType.Long")]

[assembly: SuppressMessage("Naming",
"CA1720:Identifier contains type name"
, Justification = "Not really an issue.",
Scope = "type",
Target = "~T:Skender.Stock.Indicators.ChandelierType")]

[assembly: SuppressMessage(
"Naming",
"CA1720:Identifier contains type name",
Expand All @@ -37,3 +43,13 @@
"Style",
"IDE0056:Use index operator",
Justification = "Does not support .NET Standard.")]

[assembly: SuppressMessage(
"Maintainability",
"CA1510:Use ArgumentNullException throw helper",
Justification = "Can only use with .NET 6 or later. We support .NET Framework and .NET Standard.")]

[assembly: SuppressMessage(
"StyleCop.CSharp.SpacingRules",
"SA1010:Opening square brackets should be spaced correctly",
Justification = "Invalid for new C# 12 [ collection ] syntax.")]

0 comments on commit f5288b5

Please sign in to comment.