We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46a178 commit 6bb4ad3Copy full SHA for 6bb4ad3
.github/actions/check-codescanning-config/index.ts
@@ -7,7 +7,7 @@ import * as assert from 'assert'
7
const actualConfig = loadActualConfig()
8
9
function sortConfigArrays(config) {
10
- for (const key in Object.keys(config)) {
+ for (const key of Object.keys(config)) {
11
const value = config[key];
12
if (key === 'queries' && Array.isArray(value)) {
13
config[key] = value.sort();
0 commit comments