File tree 4 files changed +9
-16
lines changed
src/Clean.Architecture.Core
4 files changed +9
-16
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,13 @@ dotnet_naming_symbols.constant_fields.applicable_kinds = field
66
66
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
67
67
dotnet_naming_symbols.constant_fields.required_modifiers = const
68
68
tab_width =2
69
+ dotnet_naming_rule.private_members_with_underscore.symbols = private_fields
70
+ dotnet_naming_rule.private_members_with_underscore.style = prefix_underscore
71
+ dotnet_naming_rule.private_members_with_underscore.severity = suggestion
72
+ dotnet_naming_symbols.private_fields.applicable_kinds = field
73
+ dotnet_naming_symbols.private_fields.applicable_accessibilities = private
74
+ dotnet_naming_style.prefix_underscore.capitalization = camel_case
75
+ dotnet_naming_style.prefix_underscore.required_prefix = _
69
76
# ##############################
70
77
# C# Coding Conventions #
71
78
# ##############################
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- using System . Collections . Generic ;
2
- using System . Threading . Tasks ;
3
- using Ardalis . Result ;
1
+ using Ardalis . Result ;
4
2
using Clean . Architecture . Core . ProjectAggregate ;
5
3
6
4
namespace Clean . Architecture . Core . Interfaces ;
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Threading . Tasks ;
5
- using Ardalis . GuardClauses ;
6
- using Ardalis . Result ;
1
+ using Ardalis . Result ;
7
2
using Clean . Architecture . Core . Interfaces ;
8
3
using Clean . Architecture . Core . ProjectAggregate ;
9
4
using Clean . Architecture . Core . ProjectAggregate . Specifications ;
You can’t perform that action at this time.
0 commit comments