mirror of
https://git.tonybark.com/tonytins/CyberBits.git
synced 2026-06-28 12:13:36 -04:00
Rewrote to be based on Avalonia UI
This commit is contained in:
parent
fb013f2b15
commit
cf5866ef3f
55 changed files with 417 additions and 790 deletions
|
|
@ -14,7 +14,6 @@ indent_style = space
|
|||
# C# files
|
||||
[*.cs]
|
||||
# Nullable reference types
|
||||
csharp_nullable_reference_types = enable
|
||||
|
||||
# Naming conventions
|
||||
dotnet_naming_rule.async_methods_end_in_async.severity = suggestion
|
||||
|
|
@ -27,6 +26,23 @@ dotnet_naming_symbols.async_methods.required_modifiers = async
|
|||
dotnet_naming_style.end_in_async.required_suffix = Async
|
||||
dotnet_naming_style.end_in_async.capitalization = pascal_case
|
||||
|
||||
dotnet_naming_symbols.locals.applicable_kinds = local, parameter
|
||||
|
||||
dotnet_naming_symbols.const_fields.applicable_kinds = field
|
||||
dotnet_naming_symbols.const_fields.required_modifiers = const
|
||||
|
||||
dotnet_naming_style.camel_case.capitalization = camel_case
|
||||
|
||||
dotnet_naming_style.all_caps.capitalization = all_upper
|
||||
|
||||
dotnet_naming_rule.locals_must_be_camel.severity = warning
|
||||
dotnet_naming_rule.locals_must_be_camel.symbols = locals
|
||||
dotnet_naming_rule.locals_must_be_camel.style = camel_case
|
||||
|
||||
dotnet_naming_rule.consts_must_be_all_caps.severity = warning
|
||||
dotnet_naming_rule.consts_must_be_all_caps.symbols = const_fields
|
||||
dotnet_naming_rule.consts_must_be_all_caps.style = all_caps
|
||||
|
||||
# Formatting
|
||||
csharp_new_line_before_open_brace = all
|
||||
csharp_indent_case_contents = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue