Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/tsconfig.rollup.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"module": "preserve",
"moduleResolution": "bundler"
}
}
}
3 changes: 2 additions & 1 deletion .dep-stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,5 @@
"fast-content-type-parse": "^2.0.1",
"has-flag": "4.0.0"
}
}
}

2 changes: 1 addition & 1 deletion .editorconfig

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Set config

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
root = true

[*]
charset = utf-8
end_of_line = lf
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Set

Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
interval: "weekly"
day: "monday"
4 changes: 2 additions & 2 deletions .github/workflows/provenance.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Publish Package to npm

on:
on:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: These added lines introduce trailing whitespace (on: and a line containing only a space), which is the exact opposite of the PR's stated whitespace-normalization goal and violates the repo's .editorconfig (trim_trailing_whitespace = true). Replace the whitespace line with a true blank line and drop the trailing space from on:.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/provenance.yml, line 3:

<comment>These added lines introduce trailing whitespace (`on: ` and a line containing only a space), which is the exact opposite of the PR's stated whitespace-normalization goal and violates the repo's `.editorconfig` (`trim_trailing_whitespace = true`). Replace the whitespace line with a true blank line and drop the trailing space from `on:`.</comment>

<file context>
@@ -1,6 +1,6 @@
-
-on:
+ 
+on: 
   workflow_dispatch:
 
</file context>

workflow_dispatch:

jobs:
Expand Down