Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: add .editorconfig setting file
  • Loading branch information
filzrev committed Feb 6, 2025
commit 2a3881614532d4909bf78eeecb862e27b00725bb
47 changes: 47 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline=true
trim_trailing_whitespace=true

# Visual Studio Spell checker configs (https://learn.microsoft.com/en-us/visualstudio/ide/text-spell-checker?view=vs-2022#how-to-customize-the-spell-checker)
spelling_exclusion_path = ./exclusion.dic

# Solution files
[*.{sln,slnx}]
indent_size = 2

# MSBuild project files
[*.{csproj,props,targets}]
indent_size = 2

# Xml config files
[*.{ruleset,config,nuspec,resx,runsettings,DotSettings}]
indent_size = 2

# JSON files
[*.json]
indent_size = 2

# YAML files
[*.{yml]
indent_size = 2

# PowerShell files
[*.ps1]
indent_size = 2

# Markdown files
[*.md]
charset = utf-8-bom
trim_trailing_whitespace = false

# C# code style settings
[*.{cs}]

## TODO: Define custom settings
3 changes: 2 additions & 1 deletion ConsoleAppFramework.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6DF6534A-0F9D-44A4-BF89-AE1F3B243914}"
ProjectSection(SolutionItems) = preProject
.dockerignore = .dockerignore
.editorconfig = .editorconfig
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
ReadMe.md = ReadMe.md
exclusion.dic = exclusion.dic
exclusion.dic = exclusion.dic
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleAppFramework", "src\ConsoleAppFramework\ConsoleAppFramework.csproj", "{09BEEA7B-B6D3-4011-BCAB-6DF976713695}"
Expand Down