Add .devskim configuration file for code scanning#1600
Merged
clairernovotny merged 1 commit intomainfrom Oct 8, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds a DevSkim configuration file to enable code scanning for security vulnerabilities. DevSkim is a security-focused linting tool that helps identify potential security issues in code.
- Adds a new
.devskimconfiguration file in the.github/workflows/directory - Configures file and directory exclusions for the security scanning tool
- Excludes common non-source directories like
.git,bin,obj, and thenuget.configfile
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| "**/.git/**", | ||
| "**/bin/**", | ||
| "**/obj/**", | ||
| "**/nuget.config" // exact file at repo root |
There was a problem hiding this comment.
JSON does not support comments. This comment will cause the configuration to be invalid JSON and may prevent DevSkim from parsing the file correctly. Remove the comment or use a JSON5-compatible format if supported.
Suggested change
| "**/nuget.config" // exact file at repo root | |
| "**/nuget.config" |
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.
No description provided.