-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switch the interpolation algorithm being used from the default line…
…ar to the nearest @ `RotateMatrix()` * fix the violation of Roslyn analyzer rule `S1244: Floating point numbers should not be tested for equality`: SonarSource/sonar-dotnet#2326 @ `PreprocessTextBoxes()` * using `RadiansToDegrees()` introduced in .NET 8: dotnet/runtime#86402 @ `GetRotationDegrees()` @ TesseractRecognizer.cs - the no longer effective suppression for Roslyn analyzer rule `SA1119:Statement should not use unnecessary parenthesis` due to DotNetAnalyzers/StyleCopAnalyzers#3730 @ `PaddleOcrRecognizerAndDetector.Initialize()` * add some ad-hoc suppressions for ReSharper inspection `StringLiteralTypo` @ imagePipeline * remove the no longer effective suppression of Roslyn analyzer rule `SA1003 // Symbols should be spaced correctly` and fix the violation of ReSharper inspection `RedundantCast` @ `ThreadLateCrawlerAndSaver.CrawlThread()` * suppress the violation of ReSharper inspection `InconsistentlySynchronizedField` @ `CrawlerLocks.AcquireFailed()` * suppress the violations of Roslyn analyzer rule `CA2021:Do not call Enumerable.Cast<T> or Enumerable.OfType<T> with incompatible types` due to it's false positive: dotnet/roslyn-analyzers#7031 @ `ResumeSuspendPostContentsPushingWorker.DoWork()` @ crawler * suppress the violations of Roslyn analyzer rule `S6667: Logging in a catch clause should pass the caught exception as a parameter` @ `ErrorableWorker.DoWorkWithExceptionLogging()` @ shared * suppress the violation of Roslyn analyzer rule `S6674:Log message template should be syntactically correct` and ReSharper inspection `RedundantUsingDirective` @ GlobalSuppressions.cs * fix all violations of Roslyn analyzer rule`CA1513: Use ObjectDisposedException throw helper` * setting `csharp_style_prefer_primary_constructors` @ .editorconfig * prevent `appsettings.*.json` get copied when publishing following https://weblog.west-wind.com/posts/2022/Aug/24/Keeping-Content-Out-of-the-Publish-Folder-for-WebDeploy#what-works-copytopublishdirectorynever @ `tbm.{Crawler,ImagePipeline}.csproj` + `tbm.sln.DotSettings` to store team-shared ReSharper options @ c#
- Loading branch information
Showing
13 changed files
with
41 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/CodeStyle/Naming/CSharpNaming/ApplyAutoDetectedRules/@EntryValue">False</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Roslynator/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Tieba/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tesseract/@EntryIndexedValue">True</s:Boolean> | ||
<!-- table name prefixes --> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tbm_/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tbmi_/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tbmc_/@EntryIndexedValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=tbmcr_/@EntryIndexedValue">True</s:Boolean> | ||
</wpf:ResourceDictionary> |