-
Notifications
You must be signed in to change notification settings - Fork 5
Jm/eslint formatting #59
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| ## Changes proposed in this pull request | ||
|
|
||
| <!-- | ||
| Provide a succinct description of what this pull request entails. | ||
| --> | ||
|
|
||
| ## Context | ||
|
|
||
| <!-- | ||
| What were you trying to do? | ||
| Link issues here - using `fixes #number` | ||
| --> | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] I have run `bun run format` to ensure code is properly formatted | ||
| - [ ] I have verified that `bun run lint` passes without errors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,55 +1,61 @@ | ||
| import { defineConfig } from "astro/config"; | ||
| import starlight from "@astrojs/starlight"; | ||
| import starlightLinksValidator from "starlight-links-validator"; | ||
| import starlightFullViewMode from "starlight-fullview-mode"; | ||
| import { defineConfig } from 'astro/config' | ||
| import starlight from '@astrojs/starlight' | ||
| import starlightLinksValidator from 'starlight-links-validator' | ||
| import starlightFullViewMode from 'starlight-fullview-mode' | ||
|
|
||
| // https://astro.build/config | ||
| export default defineConfig({ | ||
| site: "https://paymentpointers.org", | ||
| site: 'https://paymentpointers.org', | ||
| integrations: [ | ||
| starlight({ | ||
| title: "Payment Pointers", | ||
| title: 'Payment Pointers', | ||
| description: | ||
| "Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.", | ||
| 'Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.', | ||
| head: [ | ||
| { | ||
| tag: "script", | ||
| tag: 'script', | ||
| attrs: { | ||
| defer: true, | ||
| "data-website-id": "cab4fd0a-e2db-4666-a974-5b199f0d6d43", | ||
| src: "https://ilf-site-analytics.netlify.app/script.js", | ||
| "data-domains": "paymentpointers.org", | ||
| }, | ||
| }, | ||
| 'data-website-id': 'cab4fd0a-e2db-4666-a974-5b199f0d6d43', | ||
| src: 'https://ilf-site-analytics.netlify.app/script.js', | ||
| 'data-domains': 'paymentpointers.org' | ||
| } | ||
| } | ||
| ], | ||
| customCss: [ | ||
| "./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css", | ||
| "./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css", | ||
| './node_modules/@interledger/docs-design-system/src/styles/teal-theme.css', | ||
| './node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css' | ||
| ], | ||
| plugins: [starlightLinksValidator(), starlightFullViewMode()], | ||
| components: { | ||
| Header: "./src/components/Header.astro", | ||
| PageSidebar: "./src/components/PageSidebar.astro", | ||
| Header: './src/components/Header.astro', | ||
| PageSidebar: './src/components/PageSidebar.astro' | ||
| }, | ||
| expressiveCode: { | ||
| styleOverrides: { | ||
| borderColor: "transparent", | ||
| borderRadius: "var(--border-radius)", | ||
| }, | ||
| borderColor: 'transparent', | ||
| borderRadius: 'var(--border-radius)' | ||
| } | ||
| }, | ||
| social: [{ icon: "github", label: "GitHub", href: "https://github.com/interledger/paymentpointers.org" }], | ||
| sidebar: [ | ||
| { label: "Explainer", link: "/" }, | ||
| { label: "Design Goals", link: "/goals" }, | ||
| { label: "Flow", link: "/flow" }, | ||
| { label: "Syntax and Resolution", link: "/syntax" }, | ||
| { label: "IANA Considerations", link: "/iana" }, | ||
| { label: "Security Considerations", link: "/security" }, | ||
| { label: "About", link: "/about" }, | ||
| social: [ | ||
| { | ||
| icon: 'github', | ||
| label: 'GitHub', | ||
| href: 'https://github.com/interledger/paymentpointers.org' | ||
| } | ||
| ], | ||
| }), | ||
| sidebar: [ | ||
| { label: 'Explainer', link: '/' }, | ||
| { label: 'Design Goals', link: '/goals' }, | ||
| { label: 'Flow', link: '/flow' }, | ||
| { label: 'Syntax and Resolution', link: '/syntax' }, | ||
| { label: 'IANA Considerations', link: '/iana' }, | ||
| { label: 'Security Considerations', link: '/security' }, | ||
| { label: 'About', link: '/about' } | ||
| ] | ||
| }) | ||
| ], | ||
| server: { | ||
| port: 1102, | ||
| }, | ||
| }); | ||
| port: 1102 | ||
| } | ||
| }) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.