Skip to content

Commit fd569e0

Browse files
authored
Merge pull request #1 from codeforgood-org/claude/reorganize-enhance-repo-011CV6Hev9AYadcYRJpZPsA5
Enhance repo and code organization
2 parents ffd06b2 + bcb40d9 commit fd569e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+7009
-152
lines changed

.dockerignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Directories
2+
**/bin/
3+
**/obj/
4+
**/out/
5+
**/publish/
6+
**/.vs/
7+
**/.vscode/
8+
**/.idea/
9+
**/node_modules/
10+
**/TestResults/
11+
**/coverage/
12+
13+
# Files
14+
**/.DS_Store
15+
**/*.user
16+
**/*.suo
17+
**/*.userprefs
18+
**/tasks.json
19+
**/test_tasks*.json
20+
**/.git
21+
**/.gitignore
22+
**/.gitattributes
23+
**/*.md
24+
!README.md
25+
LICENSE
26+
27+
# Build artifacts
28+
**/packages/
29+
**/.nuget/
30+
*.nupkg
31+
*.snupkg
32+
33+
# Test and coverage
34+
**/*.trx
35+
**/*.coverage
36+
**/*.coveragexml

.editorconfig

Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# All files
7+
[*]
8+
charset = utf-8
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
indent_style = space
12+
indent_size = 4
13+
14+
# XML project files
15+
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
16+
indent_size = 2
17+
18+
# XML config files
19+
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
20+
indent_size = 2
21+
22+
# JSON files
23+
[*.json]
24+
indent_size = 2
25+
26+
# YAML files
27+
[*.{yml,yaml}]
28+
indent_size = 2
29+
30+
# Markdown files
31+
[*.md]
32+
trim_trailing_whitespace = false
33+
34+
# Shell scripts
35+
[*.sh]
36+
end_of_line = lf
37+
38+
# Batch files
39+
[*.{cmd,bat}]
40+
end_of_line = crlf
41+
42+
# C# files
43+
[*.cs]
44+
45+
#### Core EditorConfig Options ####
46+
47+
# Indentation and spacing
48+
indent_size = 4
49+
tab_width = 4
50+
51+
# New line preferences
52+
end_of_line = lf
53+
insert_final_newline = true
54+
55+
#### .NET Coding Conventions ####
56+
57+
# Organize usings
58+
dotnet_sort_system_directives_first = true
59+
dotnet_separate_import_directive_groups = false
60+
61+
# this. and Me. preferences
62+
dotnet_style_qualification_for_field = false:suggestion
63+
dotnet_style_qualification_for_property = false:suggestion
64+
dotnet_style_qualification_for_method = false:suggestion
65+
dotnet_style_qualification_for_event = false:suggestion
66+
67+
# Language keywords vs BCL types preferences
68+
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
69+
dotnet_style_predefined_type_for_member_access = true:suggestion
70+
71+
# Parentheses preferences
72+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
73+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
74+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
75+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
76+
77+
# Modifier preferences
78+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
79+
dotnet_style_readonly_field = true:suggestion
80+
81+
# Expression-level preferences
82+
dotnet_style_object_initializer = true:suggestion
83+
dotnet_style_collection_initializer = true:suggestion
84+
dotnet_style_explicit_tuple_names = true:suggestion
85+
dotnet_style_prefer_inferred_tuple_names = true:suggestion
86+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
87+
dotnet_style_prefer_auto_properties = true:suggestion
88+
dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
89+
dotnet_style_prefer_conditional_expression_over_return = true:suggestion
90+
dotnet_style_prefer_compound_assignment = true:suggestion
91+
dotnet_style_prefer_simplified_interpolation = true:suggestion
92+
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
93+
94+
# Null-checking preferences
95+
dotnet_style_coalesce_expression = true:suggestion
96+
dotnet_style_null_propagation = true:suggestion
97+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
98+
99+
# File header preferences
100+
file_header_template = unset
101+
102+
#### C# Coding Conventions ####
103+
104+
# var preferences
105+
csharp_style_var_for_built_in_types = false:suggestion
106+
csharp_style_var_when_type_is_apparent = true:suggestion
107+
csharp_style_var_elsewhere = false:suggestion
108+
109+
# Expression-bodied members
110+
csharp_style_expression_bodied_methods = false:suggestion
111+
csharp_style_expression_bodied_constructors = false:suggestion
112+
csharp_style_expression_bodied_operators = false:suggestion
113+
csharp_style_expression_bodied_properties = true:suggestion
114+
csharp_style_expression_bodied_indexers = true:suggestion
115+
csharp_style_expression_bodied_accessors = true:suggestion
116+
csharp_style_expression_bodied_lambdas = true:suggestion
117+
csharp_style_expression_bodied_local_functions = false:suggestion
118+
119+
# Pattern matching preferences
120+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
121+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
122+
csharp_style_prefer_switch_expression = true:suggestion
123+
csharp_style_prefer_pattern_matching = true:suggestion
124+
csharp_style_prefer_not_pattern = true:suggestion
125+
126+
# Null-checking preferences
127+
csharp_style_throw_expression = true:suggestion
128+
csharp_style_conditional_delegate_call = true:suggestion
129+
130+
# Modifier preferences
131+
csharp_prefer_static_local_function = true:suggestion
132+
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
133+
134+
# Code-block preferences
135+
csharp_prefer_braces = true:suggestion
136+
csharp_prefer_simple_using_statement = true:suggestion
137+
138+
# Expression-level preferences
139+
csharp_prefer_simple_default_expression = true:suggestion
140+
csharp_style_pattern_local_over_anonymous_function = true:suggestion
141+
csharp_style_inlined_variable_declaration = true:suggestion
142+
csharp_style_deconstructed_variable_declaration = true:suggestion
143+
csharp_style_prefer_index_operator = true:suggestion
144+
csharp_style_prefer_range_operator = true:suggestion
145+
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
146+
147+
# 'using' directive preferences
148+
csharp_using_directive_placement = outside_namespace:suggestion
149+
150+
#### C# Formatting Rules ####
151+
152+
# New line preferences
153+
csharp_new_line_before_open_brace = all
154+
csharp_new_line_before_else = true
155+
csharp_new_line_before_catch = true
156+
csharp_new_line_before_finally = true
157+
csharp_new_line_before_members_in_object_initializers = true
158+
csharp_new_line_before_members_in_anonymous_types = true
159+
csharp_new_line_between_query_expression_clauses = true
160+
161+
# Indentation preferences
162+
csharp_indent_case_contents = true
163+
csharp_indent_switch_labels = true
164+
csharp_indent_labels = no_change
165+
csharp_indent_block_contents = true
166+
csharp_indent_braces = false
167+
csharp_indent_case_contents_when_block = false
168+
169+
# Space preferences
170+
csharp_space_after_cast = false
171+
csharp_space_after_keywords_in_control_flow_statements = true
172+
csharp_space_between_parentheses = false
173+
csharp_space_before_colon_in_inheritance_clause = true
174+
csharp_space_after_colon_in_inheritance_clause = true
175+
csharp_space_around_binary_operators = before_and_after
176+
csharp_space_between_method_declaration_parameter_list_parentheses = false
177+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
178+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
179+
csharp_space_between_method_call_parameter_list_parentheses = false
180+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
181+
csharp_space_between_method_call_name_and_opening_parenthesis = false
182+
csharp_space_after_comma = true
183+
csharp_space_before_comma = false
184+
csharp_space_after_dot = false
185+
csharp_space_before_dot = false
186+
csharp_space_after_semicolon_in_for_statement = true
187+
csharp_space_before_semicolon_in_for_statement = false
188+
csharp_space_around_declaration_statements = false
189+
csharp_space_before_open_square_brackets = false
190+
csharp_space_between_empty_square_brackets = false
191+
csharp_space_between_square_brackets = false
192+
193+
# Wrapping preferences
194+
csharp_preserve_single_line_statements = false
195+
csharp_preserve_single_line_blocks = true
196+
197+
#### Naming Conventions ####
198+
199+
# Naming rules
200+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
201+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
202+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
203+
204+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
205+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
206+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
207+
208+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
209+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
210+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
211+
212+
# Symbol specifications
213+
dotnet_naming_symbols.interface.applicable_kinds = interface
214+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
215+
dotnet_naming_symbols.interface.required_modifiers =
216+
217+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
218+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
219+
dotnet_naming_symbols.types.required_modifiers =
220+
221+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
222+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
223+
dotnet_naming_symbols.non_field_members.required_modifiers =
224+
225+
# Naming styles
226+
dotnet_naming_style.pascal_case.required_prefix =
227+
dotnet_naming_style.pascal_case.required_suffix =
228+
dotnet_naming_style.pascal_case.word_separator =
229+
dotnet_naming_style.pascal_case.capitalization = pascal_case
230+
231+
dotnet_naming_style.begins_with_i.required_prefix = I
232+
dotnet_naming_style.begins_with_i.required_suffix =
233+
dotnet_naming_style.begins_with_i.word_separator =
234+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug or unexpected behavior
4+
title: '[BUG] '
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
## Bug Description
10+
A clear and concise description of what the bug is.
11+
12+
## Steps To Reproduce
13+
1. Run command '...'
14+
2. With arguments '...'
15+
3. See error
16+
17+
## Expected Behavior
18+
A clear and concise description of what you expected to happen.
19+
20+
## Actual Behavior
21+
A clear and concise description of what actually happened.
22+
23+
## Environment
24+
- OS: [e.g., Windows 11, Ubuntu 22.04, macOS 14]
25+
- .NET Version: [e.g., .NET 8.0]
26+
- Task Manager Version: [e.g., 2.0.0]
27+
- Installation Method: [e.g., built from source, Docker, global tool]
28+
29+
## Tasks File (if relevant)
30+
```json
31+
// Paste relevant content from your tasks.json file
32+
```
33+
34+
## Error Messages
35+
```
36+
Paste any error messages or stack traces here
37+
```
38+
39+
## Screenshots
40+
If applicable, add screenshots to help explain your problem.
41+
42+
## Additional Context
43+
Add any other context about the problem here.
44+
45+
## Possible Solution
46+
If you have ideas on how to fix this, please share them here.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Documentation Issue
3+
about: Report missing, incorrect, or unclear documentation
4+
title: '[DOCS] '
5+
labels: documentation
6+
assignees: ''
7+
---
8+
9+
## Documentation Issue
10+
Which documentation needs improvement?
11+
12+
- [ ] README.md
13+
- [ ] QUICKSTART.md
14+
- [ ] CONTRIBUTING.md
15+
- [ ] ARCHITECTURE.md
16+
- [ ] EXAMPLES.md
17+
- [ ] Code comments
18+
- [ ] Other: _______
19+
20+
## Current Documentation
21+
Link or quote the current documentation that needs improvement.
22+
23+
## Issue Description
24+
What is unclear, incorrect, or missing?
25+
26+
## Suggested Improvement
27+
How would you improve this documentation?
28+
29+
## Additional Context
30+
Add any other context or examples about the documentation issue.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature or enhancement
4+
title: '[FEATURE] '
5+
labels: enhancement
6+
assignees: ''
7+
---
8+
9+
## Feature Description
10+
A clear and concise description of the feature you'd like to see.
11+
12+
## Problem Statement
13+
Describe the problem this feature would solve. Ex: "I'm always frustrated when..."
14+
15+
## Proposed Solution
16+
Describe how you envision this feature working.
17+
18+
## Alternative Solutions
19+
Describe any alternative solutions or features you've considered.
20+
21+
## Use Cases
22+
Provide specific examples of how this feature would be used:
23+
24+
1. Scenario 1: ...
25+
2. Scenario 2: ...
26+
3. Scenario 3: ...
27+
28+
## Implementation Ideas
29+
If you have ideas on how this could be implemented, share them here.
30+
31+
## Impact
32+
- Who would benefit from this feature?
33+
- How often would it be used?
34+
- Would this be a breaking change?
35+
36+
## Additional Context
37+
Add any other context, mockups, or examples about the feature request here.
38+
39+
## Willingness to Contribute
40+
- [ ] I am willing to submit a PR for this feature
41+
- [ ] I am willing to help test this feature
42+
- [ ] I can provide additional details if needed

0 commit comments

Comments
 (0)