Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 25f5350

Browse files
committed
Format and lint all files
1 parent 19c0a94 commit 25f5350

File tree

7 files changed

+23
-24
lines changed

7 files changed

+23
-24
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
4-
directory: "/"
3+
- package-ecosystem: 'npm'
4+
directory: '/'
55
schedule:
6-
interval: "daily"
6+
interval: 'daily'
77
groups:
88
docusaurus:
99
patterns:
10-
- "*docusaurus*"
10+
- '*docusaurus*'
1111
ignore:
1212
# Pin key docusaurus dependencies to major versions
13-
- dependency-name: "@mdx-js/react"
14-
update-types: ["version-update:semver-major"]
15-
- dependency-name: "prism-react-renderer"
16-
update-types: ["version-update:semver-major"]
17-
- package-ecosystem: "github-actions"
18-
directory: "/"
13+
- dependency-name: '@mdx-js/react'
14+
update-types: ['version-update:semver-major']
15+
- dependency-name: 'prism-react-renderer'
16+
update-types: ['version-update:semver-major']
17+
- package-ecosystem: 'github-actions'
18+
directory: '/'
1919
schedule:
20-
interval: "daily"
20+
interval: 'daily'

docs/about/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ process outlined in the project's
2020
## Creating GitHub issues
2121

2222
GitHub issues are used to track feature requests and bug reports. If you have a
23-
general usage question, please ask in the #codegate channel on
23+
general usage question, please ask in the `#codegate` channel on
2424
[Discord](https://discord.gg/stacklok). To report a bug or request a feature,
2525
create a new issue in the
2626
[CodeGate GitHub repository](https://github.com/stacklok/codegate/issues).

docs/how-to/use-with-continue.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ option, best suited to quick experimentation with various coding models.
287287
To use this provider, download your desired model file in GGUF format from the
288288
[Hugging Face library](https://huggingface.co/models?library=gguf&sort=trending).
289289
Then copy it into the `/app/codegate_volume/models` directory in the CodeGate
290-
container. To persist models between restarts, run CodeGate with a Docker
291-
volume as shown in the [recommended configuration](./install.md#recommended-settings).
290+
container. To persist models between restarts, run CodeGate with a Docker volume
291+
as shown in the [recommended configuration](./install.md#recommended-settings).
292292

293293
Example using huggingface-cli to download our recommended models for chat (at
294294
least a 7B model is recommended for best results) and autocomplete (a 1.5B or 3B

docs/partials/_remove-cert.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Certificates in the CurrentUser\Root certificate store must be deleted from the
1818
GUI.
1919

2020
1. In the Start menu, search for **Manage User Certificates** or run
21-
(<kbd>Win</kbd>+<kbd>R</kbd>) `certmgr.msc` to open the user certificate store
21+
(<kbd>Win</kbd>+<kbd>R</kbd>) `certmgr.msc` to open the user certificate
22+
store
2223
1. Navigate to **Trusted Root Certification Authorities****Certificates**
2324
1. Delete the "CodeGate CA" certificate
2425

docs/quickstart-copilot.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ id: quickstart
77
slug: /quickstart
88
---
99

10-
import Tabs from '@theme/Tabs';
11-
import TabItem from '@theme/TabItem';
1210
import useBaseUrl from '@docusaurus/useBaseUrl';
1311
import ThemedImage from '@theme/ThemedImage';
1412

docusaurus.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,16 +138,16 @@ const config: Config = {
138138
title: 'Links',
139139
items: [
140140
{
141-
html: '<a href="https://www.stacklok.com" target="_blank" class="navbar__link header-stacklok-link"">&nbsp;&nbsp;Stacklok</a>'
141+
html: '<a href="https://www.stacklok.com" target="_blank" class="navbar__link header-stacklok-link"">&nbsp;&nbsp;Stacklok</a>',
142142
},
143143
{
144-
html: '<a href="https://youtube.com/@stacklok" target="_blank" class="navbar__link header-youtube-link"">&nbsp;&nbsp;YouTube</a>'
144+
html: '<a href="https://youtube.com/@stacklok" target="_blank" class="navbar__link header-youtube-link"">&nbsp;&nbsp;YouTube</a>',
145145
},
146146
{
147-
html: '<a href="https://github.com/stacklok/codegate" target="_blank" class="navbar__link header-github-link">&nbsp;&nbsp;GitHub</a>'
147+
html: '<a href="https://github.com/stacklok/codegate" target="_blank" class="navbar__link header-github-link">&nbsp;&nbsp;GitHub</a>',
148148
},
149149
{
150-
html: '<a href="https://discord.gg/stacklok" target="_blank" class="navbar__link header-discord-link">&nbsp;&nbsp;Discord</a>'
150+
html: '<a href="https://discord.gg/stacklok" target="_blank" class="navbar__link header-discord-link">&nbsp;&nbsp;Discord</a>',
151151
},
152152
],
153153
},
@@ -180,7 +180,7 @@ const config: Config = {
180180
theme: { light: 'neutral', dark: 'dark' },
181181
options: {
182182
themeVariables: {
183-
fontFamily: 'Figtree, system-ui, sans-serif'
183+
fontFamily: 'Figtree, system-ui, sans-serif',
184184
},
185185
},
186186
},

sidebars.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1+
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
22

33
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
44

@@ -14,7 +14,7 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1414
*/
1515
const sidebars: SidebarsConfig = {
1616
// By default, Docusaurus generates a sidebar from the docs folder structure
17-
docsSidebar: [{type: 'autogenerated', dirName: '.'}],
17+
docsSidebar: [{ type: 'autogenerated', dirName: '.' }],
1818

1919
// But you can create a sidebar manually
2020
/*

0 commit comments

Comments
 (0)