-
Notifications
You must be signed in to change notification settings - Fork 1
Test pr GF #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Test pr GF #2
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,6 +13,6 @@ npm run dev | |||||
| - Starts on `http://localhost:8000` (`api/testnet/src/index.ts:18-23,75-81`). | ||||||
| - `GET /` returns index JSON with available endpoints (`api/testnet/src/index.ts:26-47`). | ||||||
|
|
||||||
| ## Headers | ||||||
| ## Headers## | ||||||
|
|
||||||
| - CORS allows standard headers and `X-ACTA-Key` (`api/testnet/src/config/cors.ts:4-23`). | ||||||
| -CORS allows standard headers and `X-ACTA-Key` (`api/testnet/src/config/cors.ts:4-23`). | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Restore the space after the list dash. Markdown list items require a space after the dash: 🔧 Proposed fix--CORS allows standard headers and `X-ACTA-Key` (`api/testnet/src/config/cors.ts:4-23`).
+- CORS allows standard headers and `X-ACTA-Key` (`api/testnet/src/config/cors.ts:4-23`).📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix invalid Markdown heading syntax.
The heading is malformed. Closed ATX-style headings in Markdown require a space before the closing hashes:
## Text ##, not## Text##. The original## Headerswas valid; the change introduces a syntax error that static analysis tools flag (MD020).🔧 Proposed fix
Or, if you prefer closed ATX-style:
📝 Committable suggestion
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)
16-16: No space inside hashes on closed atx style heading
(MD020, no-missing-space-closed-atx)
🤖 Prompt for AI Agents