Skip to content
Merged
Changes from all commits
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
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ resharper_web_config_wrong_module_highlighting = warning
[*.{cs,csx,vb,vbx,css,scss}]
indent_size = 4

Copy link

Copilot AI Nov 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the utf-8-bom charset setting for C# files (*.cs) may cause issues with the C# compiler and Visual Studio, which traditionally expect UTF-8 with BOM for source files. Consider keeping the BOM requirement at least for *.cs files to maintain compatibility with legacy tooling and avoid potential encoding-related issues.

Suggested change
[*.cs]
charset = utf-8-bom

Copilot uses AI. Check for mistakes.
[*.{cs,css,scss,js,json,*html,razor,txt,log}]
charset = utf-8-bom

[*.{xml,config,*proj,nuspec,props,resx,targets,yml,tasks}]
indent_size = 2

Expand Down
Loading