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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* linguist-language=C#
Copy link

Copilot AI Feb 9, 2026

Choose a reason for hiding this comment

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

Using * linguist-language=C# forces GitHub Linguist to classify every file in the repo (including .md, .sh, .ps1, .json, etc.) as C#, which will break language stats and can affect syntax highlighting in the UI. Consider scoping this to only the extensions you intend to override (e.g., *.cs, *.razor, etc.), and add explicit overrides for other file types if needed rather than applying it globally.

Suggested change
* linguist-language=C#
*.cs linguist-language=C#
*.razor linguist-language=C#

Copilot uses AI. Check for mistakes.
Loading