Skip to content

Commit f45ff56

Browse files
committed
.
1 parent 67a9422 commit f45ff56

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/linter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ jobs:
4141
uses: super-linter/super-linter/slim@v7
4242
env:
4343
DEFAULT_BRANCH: main
44-
FILTER_REGEX_EXCLUDE: dist/**/*,src/supabase-pawtograder.yml
44+
FILTER_REGEX_EXCLUDE: dist/**/*
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
LINTER_RULES_PATH: ${{ github.workspace }}
4747
VALIDATE_ALL_CODEBASE: true
48+
VALIDATE_CHEKOV: false
4849
VALIDATE_JAVASCRIPT_ES: false
4950
VALIDATE_JAVASCRIPT_STANDARD: false
5051
VALIDATE_JSCPD: false

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/client/utils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,7 @@ export const mergeHeaders = (
282282
continue
283283
}
284284

285-
const iterator =
286-
header instanceof Headers ? header.entries() : Object.entries(header)
285+
const iterator = Object.entries(header) as [string, string][]
287286

288287
for (const [key, value] of iterator) {
289288
if (value === null) {

0 commit comments

Comments
 (0)