a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[sln] Add ReSharper rule to enforce Task-returning methods being suffixed with Async

+16
+14
.editorconfig
··· 1 + # Top-most EditorConfig file 2 + root = true 3 + 4 + [{Iceshrimp.Backend/Controllers/*/*.cs,Iceshrimp.Tests/**.cs,**.razor,**.razor.cs}] 5 + 6 + # Override for controller actions. Main rule is configured in ReSharper. 7 + dotnet_naming_rule.async_methods_end_in_async.symbols = any_async_methods 8 + dotnet_naming_rule.async_methods_end_in_async.style = camel 9 + dotnet_naming_rule.async_methods_end_in_async.severity = none 10 + 11 + dotnet_naming_symbols.any_async_methods.applicable_kinds = method 12 + dotnet_naming_symbols.any_async_methods.required_modifiers = async 13 + 14 + dotnet_naming_style.camel.capitalization = camel_case
+1
Iceshrimp.NET.sln
··· 34 34 LICENSE = LICENSE 35 35 README.md = README.md 36 36 SECURITY.md = SECURITY.md 37 + .editorconfig = .editorconfig 37 38 EndProjectSection 38 39 EndProject 39 40 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iceshrimp.Build", "Iceshrimp.Build\Iceshrimp.Build.csproj", "{B2598946-03CA-4C6B-8E3E-7F2AC77021E5}"
+1
Iceshrimp.NET.sln.DotSettings
··· 365 365 <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=FF/@EntryIndexedValue">FF</s:String> 366 366 <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=IP/@EntryIndexedValue">IP</s:String> 367 367 <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=LD/@EntryIndexedValue">LD</s:String> 368 + <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=55a2edb3_002D0ba9_002D464b_002Db286_002Df1f464de74b9/@EntryIndexedValue">&lt;Policy&gt;&lt;Descriptor Staticness="Any" AccessRightKinds="Any" Description="Task-returning methods end in Async"&gt;&lt;ElementKinds&gt;&lt;Kind Name="ASYNC_METHOD" /&gt;&lt;Kind Name="TASK_RETURNING_METHOD" /&gt;&lt;Kind Name="ASYNC_LOCAL_FUNCTION" /&gt;&lt;Kind Name="TASK_RETURNING_LOCAL_FUNCTION" /&gt;&lt;/ElementKinds&gt;&lt;/Descriptor&gt;&lt;Policy Inspect="True" WarnAboutPrefixesAndSuffixes="False" Prefix="" Suffix="Async" Style="AaBb" /&gt;&lt;/Policy&gt;</s:String> 368 369 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean> 369 370 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean> 370 371 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>