We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e37e23 commit abb25daCopy full SHA for abb25da
1 file changed
.github/workflows/codeql.yml
@@ -50,9 +50,13 @@ jobs:
50
uses: github/codeql-action/init@v4
51
with:
52
languages: csharp
53
- # security-and-quality includes the standard security queries
54
- # plus the broader quality ruleset.
55
- queries: security-and-quality
+ # security-extended = the broader security ruleset without
+ # the quality/style noise (missed-LINQ, catch-of-all-exceptions,
+ # virtual-call-in-constructor, etc.). We intentionally catch
56
+ # general Exception in several defensive paths to keep ACT
57
+ # from crashing on plugin errors, and the WinForms-style
58
+ # property-set-in-constructor in SettingsPanel is idiomatic.
59
+ queries: security-extended
60
61
- name: Build
62
run: dotnet build EQ2Lexicon.ACTPlugin.sln -c Release
0 commit comments