Minor Dev Environment Fixes (.editorconfig cleanup, typo fix, .gitignore tweak)#3544
Merged
siegfriedpammer merged 3 commits intoAug 26, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR contains minor development environment and code quality fixes with no runtime behavior changes. The changes focus on cleaning up configuration files and fixing a spelling error in property names.
- Removed duplicate .editorconfig settings and corrected an invalid configuration value
- Updated .gitignore to ignore all .vscode folders instead of just the top-level one
- Fixed spelling error in property name from "ReportExludedTypes" to "ReportExcludedTypes"
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .editorconfig | Removed duplicate settings and fixed invalid csharp_space_around_declaration_statements value |
| ICSharpCode.ILSpyCmd/IlspyCmdProgram.cs | Fixed spelling in property name and usage from "ReportExludedTypes" to "ReportExcludedTypes" |
| ICSharpCode.ILSpyX/MermaidDiagrammer/GenerateHtmlDiagrammer.cs | Fixed spelling in property name from "ReportExludedTypes" to "ReportExcludedTypes" |
| ICSharpCode.ILSpyX/MermaidDiagrammer/Generator.Run.cs | Fixed spelling in property usage from "ReportExludedTypes" to "ReportExcludedTypes" |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
petercrabtree
force-pushed
the
dev/dev-env-clean
branch
3 times, most recently
from
August 26, 2025 04:07
b13a29b to
a29a9ed
Compare
Updates the .gitignore file to recursively exclude all .vscode/ directories instead of just the first level
siegfriedpammer
force-pushed
the
dev/dev-env-clean
branch
from
August 26, 2025 04:52
a29a9ed to
471130a
Compare
Member
|
Thank you very much for your contribution! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Minor fixes that seemed like they're small enough to bundle together for review (there should be no run-time change in behavior):