Skip to content

Commit

Permalink
copy over .editorconfig from Dalamud again
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Nov 27, 2023
1 parent 08b2da1 commit c221ac2
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ dotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static
dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static,readonly
dotnet_separate_import_directive_groups = true
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
Expand Down Expand Up @@ -97,6 +98,7 @@ resharper_apply_on_completion = true
resharper_auto_property_can_be_made_get_only_global_highlighting = none
resharper_auto_property_can_be_made_get_only_local_highlighting = none
resharper_autodetect_indent_settings = true
resharper_blank_lines_around_single_line_auto_property = 1
resharper_braces_for_ifelse = required_for_multiline
resharper_can_use_global_alias = false
resharper_csharp_align_multiline_parameter = true
Expand All @@ -105,14 +107,22 @@ resharper_csharp_empty_block_style = multiline
resharper_csharp_int_align_comments = true
resharper_csharp_new_line_before_while = true
resharper_csharp_wrap_after_declaration_lpar = true
resharper_csharp_wrap_after_invocation_lpar = true
resharper_csharp_wrap_arguments_style = chop_if_long
resharper_enforce_line_ending_style = true
resharper_instance_members_qualify_declared_in = this_class, base_class
resharper_member_can_be_private_global_highlighting = none
resharper_member_can_be_private_local_highlighting = none
resharper_new_line_before_finally = false
resharper_new_line_before_finally = true
resharper_parentheses_non_obvious_operations = none, multiplicative, additive, arithmetic, shift, bitwise_and, bitwise_exclusive_or, bitwise_inclusive_or, bitwise
resharper_parentheses_redundancy_style = remove_if_not_clarifies_precedence
resharper_place_accessorholder_attribute_on_same_line = false
resharper_place_field_attribute_on_same_line = false
resharper_place_simple_initializer_on_single_line = true
resharper_show_autodetect_configure_formatting_tip = false
resharper_space_within_single_line_array_initializer_braces = true
resharper_use_indent_from_vs = false
resharper_wrap_array_initializer_style = chop_if_long

# ReSharper inspection severities
resharper_arrange_missing_parentheses_highlighting = hint
Expand Down
6 changes: 6 additions & 0 deletions Plogon/BuildProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;

using Docker.DotNet;
using Docker.DotNet.Models;

using LibGit2Sharp;

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

using PgpCore;

using Plogon.Manifests;
using Plogon.Repo;

using Serilog;

namespace Plogon;
Expand Down
1 change: 1 addition & 0 deletions Plogon/BuildTask.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;

using Plogon.Manifests;
#pragma warning disable CS8618
#pragma warning disable CS1591
Expand Down
2 changes: 2 additions & 0 deletions Plogon/DalamudReleases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;

using Serilog;

using Tomlyn;

namespace Plogon;
Expand Down
1 change: 1 addition & 0 deletions Plogon/DiscordWebhook.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;

using Discord;
using Discord.Webhook;

Expand Down
1 change: 1 addition & 0 deletions Plogon/GitHubApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;

using Octokit;

namespace Plogon;
Expand Down
2 changes: 2 additions & 0 deletions Plogon/Manifests/ManifestStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;

using Serilog;

using Tomlyn;
#pragma warning disable CS1591

Expand Down
1 change: 1 addition & 0 deletions Plogon/NugetLockfile.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;

using Newtonsoft.Json;
#pragma warning disable CS8618
#pragma warning disable CS1591
Expand Down
2 changes: 2 additions & 0 deletions Plogon/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;

using Discord;

using Serilog;

namespace Plogon;
Expand Down
2 changes: 2 additions & 0 deletions Plogon/Repo/PluginRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using System;
using System.IO;
using System.Linq;

using Serilog;

using Tomlyn;

namespace Plogon.Repo;
Expand Down
1 change: 1 addition & 0 deletions Plogon/WebServices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;

using Serilog;
#pragma warning disable CS1591

Expand Down

0 comments on commit c221ac2

Please sign in to comment.