Skip to content

Commit 4cecae1

Browse files
authored
ci(docs): linter bump version + expand scope (supabase#30860)
1 parent 0ecd244 commit 4cecae1

23 files changed

+462
-160
lines changed

.github/workflows/docs-lint-v2.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
19+
fetch-depth: 0
1920
sparse-checkout: |
2021
supa-mdx-lint.config.toml
22+
supa-mdx-lint
2123
apps/docs/content
2224
- name: cache cargo
2325
id: cache-cargo
@@ -28,17 +30,21 @@ jobs:
2830
~/.cargo/registry/index/
2931
~/.cargo/registry/cache/
3032
~/.cargo/git/db/
31-
key: 2d535367b06fe62354035464cf8334929bafca85
33+
key: 6435a4cd1eeea7c2bbd343731de7e8a5127cb2d1
3234
- name: install linter
3335
if: steps.cache-cargo.outputs.cache-hit != 'true'
34-
run: cargo install --locked --git https://github.com/supabase-community/supa-mdx-lint --rev 2d535367b06fe62354035464cf8334929bafca85
36+
run: cargo install --locked --git https://github.com/supabase-community/supa-mdx-lint --rev 6435a4cd1eeea7c2bbd343731de7e8a5127cb2d1
3537
- name: install reviewdog
3638
uses: reviewdog/action-setup@3f401fe1d58fe77e10d665ab713057375e39b887 # v1.3.0
3739
with:
3840
reviewdog_version: v0.20.2
3941
- name: run linter
4042
env:
43+
BASE_REF: ${{ github.base_ref }}
4144
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4245
run: |
4346
set -o pipefail
44-
supa-mdx-lint apps/docs/content/guides/getting-started apps/docs/content/guides/ai apps/docs/content/guides/auth --format rdf | tee >(cat) | reviewdog -f=rdjsonl -reporter=github-pr-review
47+
git diff --name-only origin/$BASE_REF HEAD \
48+
| grep -E "^apps/docs/content/guides/(getting-started|ai|api|auth|database|deployment|functions)/" \
49+
| xargs -r supa-mdx-lint --format rdf \
50+
| reviewdog -f=rdjsonl -reporter=github-pr-review

apps/docs/content/guides/auth/auth-captcha.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
id: 'auth-captcha'
3-
title: 'Enable Captcha Protection'
4-
description: 'Add Captcha Protection to your Supabase project'
3+
title: 'Enable CAPTCHA Protection'
4+
description: 'Add CAPTCHA Protection to your Supabase project'
55
tocVideo: 'em1cpOAXknM'
66
---
77

8-
Supabase provides you with the option of adding captcha to your sign-in, sign-up, and password reset forms. This keeps your website safe from bots and malicious scripts. Supabase authentication has support for [hCaptcha](https://www.hcaptcha.com/) and [Cloudflare Turnstile](https://www.cloudflare.com/products/turnstile/).
8+
Supabase provides you with the option of adding CAPTCHA to your sign-in, sign-up, and password reset forms. This keeps your website safe from bots and malicious scripts. Supabase authentication has support for [hCaptcha](https://www.hcaptcha.com/) and [Cloudflare Turnstile](https://www.cloudflare.com/products/turnstile/).
99

10-
## Sign up for Captcha
10+
## Sign up for CAPTCHA
1111

1212
<Tabs
1313
scrollable
@@ -39,13 +39,13 @@ In the Settings page, look for the **Sitekey** section and copy the key.
3939
</TabPanel>
4040
</Tabs>
4141

42-
## Enable Captcha protection for your Supabase project
42+
## Enable CAPTCHA protection for your Supabase project
4343

4444
Navigate to the **[Auth](https://supabase.com/dashboard/project/_/settings/auth)** section of your Project Settings in the Supabase Dashboard and find the **Enable Captcha protection** toggle under Settings > Authentication > Bot and Abuse Protection > Enable Captcha protection.
4545

4646
Select your CAPTCHA provider from the dropdown, enter your Captcha **Secret key**, and click **Save**.
4747

48-
## Add the Captcha frontend component
48+
## Add the CAPTCHA frontend component
4949

5050
The frontend requires some changes to provide the captcha on-screen for the user. This example uses React and the corresponding Captcha React component, but both Captcha providers can be used with any JavaScript framework.
5151

apps/docs/content/guides/database/extensions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In addition to the pre-configured extensions, you can also install your own SQL
5454

5555
</Admonition>
5656

57-
### Upgrade Extensions
57+
### Upgrade extensions
5858

5959
If a new version of an extension becomes available on Supabase, you need to initiate a software upgrade in the [Infrastructure Settings](https://supabase.com/dashboard/project/_/settings/infrastructure) to access it. Software upgrades can also be initiated by restarting your server in the [General Settings](https://supabase.com/dashboard/project/_/settings/general).
6060

apps/docs/content/guides/database/extensions/rum.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ drop extension if exists rum;
5858

5959
### Syntax
6060

61-
#### For type: tsvector
61+
#### For type: `tsvector`
6262

6363
To understand the following you may need first to see [Official PostgreSQL documentation on text
6464
search](https://www.postgresql.org/docs/current/functions-textsearch.html)
@@ -116,7 +116,7 @@ SELECT id, d, d `<=>` '2016-05-16 14:21:25' FROM tsts WHERE t @@ 'wr&qh' ORDER B
116116
(5 rows)
117117
```
118118

119-
#### For type: anyarray
119+
#### For type: `anyarray`
120120

121121
`rum_anyarray_ops`
122122

apps/docs/content/guides/database/postgres/column-level-security.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ PostgreSQL's [Row Level Security (RLS)](https://www.postgresql.org/docs/current/
1212
roles.
1313
</Admonition>
1414

15-
## Policies at the Row Level
15+
## Policies at the row level
1616

1717
Policies in Row Level Security (RLS) are used to restrict access to rows in a table. Think of them like adding a `WHERE` clause to every query.
1818

@@ -35,7 +35,7 @@ update
3535

3636
However, this gives the post owner full access to update the row, including all of the columns.
3737

38-
## Privileges at the Column Level
38+
## Privileges at the column level
3939

4040
To restrict access to columns, you can use [Privileges](https://www.postgresql.org/docs/current/ddl-priv.html).
4141

@@ -80,7 +80,7 @@ You can view and edit the privileges in the [Supabase Studio](https://supabase.c
8080

8181
![Column level privileges](/docs/img/guides/privileges/column-level-privileges-2.png)
8282

83-
## Manage column privileges in Migrations
83+
## Manage column privileges in migrations
8484

8585
While you can manage privileges directly from the Dashboard, as your project grows you may want to manage them in your migrations. Read about database migrations in the [Local Development](https://supabase.com/docs/guides/getting-started/local-development#database-migrations) guide.
8686

apps/docs/content/guides/database/postgres/roles.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ When you created your project you were also asked to enter a password. This is a
4646

4747
Changing the password does not result in any downtime. All connected services, such as postgrest, pgbouncer, and other Supabase managed services, are automatically updated to use the latest password to ensure availability. However, if you have any external services connecting to the Supabase database using hardcoded username/password credentials, a manual update will be required.
4848

49-
## Granting Permissions
49+
## Granting permissions
5050

5151
Roles can be granted various permissions on database objects using the `GRANT` command. Permissions include `SELECT`, `INSERT`, `UPDATE`, and `DELETE`. You can configure access to almost any object inside your database - including tables, views, functions, and triggers.
5252

apps/docs/content/guides/database/postgres/timeouts.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ language sql;
124124

125125
The Supabase Dashboard contains tools to help you identify timed-out and long-running queries.
126126

127-
### Using the Log Explorer
127+
### Using the Logs Explorer
128128

129-
Go to the [Log Explorer](/dashboard/project/_/logs/explorer), and run the following query to identify timed-out events (`statement timeout`) and queries that successfully run for longer than 10 seconds (`duration`).
129+
Go to the [Logs Explorer](/dashboard/project/_/logs/explorer), and run the following query to identify timed-out events (`statement timeout`) and queries that successfully run for longer than 10 seconds (`duration`).
130130

131131
```sql
132132
select

apps/docs/content/guides/database/prisma/prisma-troubleshooting.mdx

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ connection_string.../postgres?KEY1=VALUE&KEY2=VALUE&KEY3=VALUE
2727

2828
# Errors
2929

30+
{/* supa-mdx-lint-disable-next-line Rule001HeadingCase */}
31+
3032
## ... prepared statement already exists
3133

3234
Supavisor in transaction mode (port 6543) does not support [prepared statements](https://www.postgresql.org/docs/current/sql-prepare.html), which Prisma will try to create in the background.
@@ -162,7 +164,7 @@ An alternative strategy to reference these tables is to duplicate values into Pr
162164

163165
<details>
164166
<summary>Show/Hide Details</summary>
165-
167+
166168
```sql table_in_public
167169
-- Create the 'profiles' table in the 'public' schema
168170
create table public.profiles (

apps/docs/content/guides/database/query-optimization.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ limit 10;
3434

3535
In this query, there are several parts that indexes could likely help in optimizing the performance:
3636

37-
### `where` Clause:
37+
### `where` clause:
3838

3939
The `where` clause filters rows based on certain conditions, and indexing the columns involved can improve this process:
4040

@@ -47,7 +47,7 @@ create index idx_customers_sign_up_date on customers (sign_up_date);
4747
create index idx_orders_status on orders (status);
4848
```
4949

50-
### `join` Columns
50+
### `join` columns
5151

5252
Indexes on the columns used for joining tables can help Postgres avoid scanning tables in their entirety when connecting tables.
5353

@@ -58,7 +58,7 @@ Indexes on the columns used for joining tables can help Postgres avoid scanning
5858
create index idx_orders_customer_id on orders (customer_id);
5959
```
6060

61-
### `order by` Clause
61+
### `order by` clause
6262

6363
Sorting can also be optimized by indexing:
6464

apps/docs/content/guides/functions/examples/auth-send-email-hook-react-email-resend.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Deno.serve(async (req) => {
114114
})
115115
```
116116

117-
### 3. Create React Email Templates
117+
### 3. Create React Email templates
118118

119119
Create a new folder `_templates` and create a new file `magic-link.tsx` with the following code:
120120

@@ -296,7 +296,7 @@ supabase secrets set --env-file supabase/functions/.env
296296

297297
That's it, now your Supabase Edge Function will be triggered anytime an Auth Email needs to be send to the user!
298298

299-
## More Resources
299+
## More resources
300300

301301
- [Send Email Hooks](/docs/guides/auth/auth-hooks/send-email-hook)
302302
- [Auth Hooks](/docs/guides/auth/auth-hooks)

apps/docs/content/guides/functions/examples/discord-bot.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function hexToUint8Array(hex: string) {
138138
}
139139
```
140140

141-
## Deploy the Slash Command handler
141+
## Deploy the slash command handler
142142

143143
```bash
144144
supabase functions deploy discord-bot --no-verify-jwt
@@ -154,7 +154,7 @@ Navigate to your Function details in the Supabase Dashboard to get your Endpoint
154154

155155
The application is now ready. Let's proceed to the next section to install it.
156156

157-
## Install the Slash Command on your Discord server
157+
## Install the slash command on your Discord server
158158

159159
So to use the `hello` Slash Command, we need to install our Greeter application on our Discord server. Here are the steps:
160160

apps/docs/content/guides/functions/examples/push-notifications.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ Push notifications are an important part of any mobile app. They allow you to se
1818

1919
Find the example code on [GitHub](https://github.com/supabase/supabase/blob/master/examples/user-management/expo-push-notifications/).
2020

21-
## Supabase Setup
21+
## Supabase setup
2222

2323
- [Create a new Supabase project](https://database.new).
2424
- Link your project: `supabase link --project-ref your-supabase-project-ref`
2525
- Start supabase locally: `supabase start`
2626
- Push up the schema: `supabase db push` (schema is defined in [supabase/migrations](https://github.com/supabase/supabase/blob/master/examples/user-management/expo-push-notifications/supabase/migrations/))
2727

28-
## Expo Setup
28+
## Expo setup
2929

3030
To utilize Expo's push notification service, you must configure your app by installing a set of libraries, implementing functions to handle notifications, and setting up credentials for Android and iOS. Follow the official [Expo Push Notifications Setup Guide](https://docs.expo.dev/push-notifications/push-notifications-setup/) to get the credentials for Android and iOS. This project uses [Expo's EAS build](https://docs.expo.dev/build/introduction/) service to simplify this part.
3131

@@ -126,7 +126,7 @@ Push notifications are an important part of any mobile app. They allow you to se
126126

127127
This guide will show you how to send push notifications to your app when a new row is inserted into a table using FCM, Supabase Edge Functions, and database web hooks.
128128

129-
## Supabase Setup
129+
## Supabase setup
130130

131131
We will create two tables. One to store the user's FCM token and a `notifications` table. The edge function will be triggered when a new row is inserted into the `notifications` table and sends a push notification to the user.
132132

@@ -258,7 +258,7 @@ Push notifications are an important part of any mobile app. They allow you to se
258258
}
259259
```
260260

261-
## FCM Setup
261+
## FCM setup
262262

263263
1. Follow the official [FCM Setup Guide](https://firebase.google.com/docs/cloud-messaging) to set up FCM for your client side application.
264264
1. Generate a new service account private key from the Firebase console `Project Settings > Service Accounts > Generate new private key`.

apps/docs/content/guides/functions/examples/semantic-search.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Deno.serve(async (req) => {
6161
})
6262
```
6363

64-
## Create a Postgres Function and RPC
64+
## Create a Database Function and RPC
6565

6666
With the embeddings now stored in your Postgres database table, you can query them from Supabase Edge Functions by utilizing [Remote Procedure Calls (RPC)](/docs/guides/database/functions?language=js).
6767

apps/docs/content/guides/functions/examples/sentry-monitoring.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ supabase functions deploy sentryfied --no-verify-jwt
7979

8080
Find the complete example on [GitHub](https://github.com/supabase/supabase/tree/master/examples/edge-functions/supabase/functions/sentryfied/index.ts).
8181

82-
## Working With Scopes
82+
## Working with scopes
8383

8484
Sentry Deno SDK currently do not support `Deno.serve` instrumentation, which means that there is no scope separation between requests.
8585
Because of that, when the Edge Functions runtime is reused between multiple requests, all globally captured breadcrumbs and contextual data

apps/docs/content/guides/functions/import-maps.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Developing with Edge Functions is similar to developing with Node.js, but with a
1212

1313
There are two ways to manage your dependencies in Supabase Edge Functions:
1414

15-
### Using deno.json (Recommended)
15+
### Using deno.json (recommended)
1616

1717
<Admonition type="info">
1818

@@ -50,7 +50,7 @@ The recommended file structure when using `deno.json`:
5050
└── config.toml
5151
```
5252

53-
### Using Import Maps (Legacy)
53+
### Using import maps (legacy)
5454

5555
Import Maps are a legacy way to manage dependencies, similar to a `package.json` file. While still supported, we recommend using `deno.json`. If both exist, `deno.json` takes precedence.
5656

@@ -112,15 +112,15 @@ Supabase Edge Functions support several ways to import dependencies:
112112
- Built-in [Node APIs](https://docs.deno.com/runtime/manual/node/compatibility)
113113
- Third party modules published to [JSR](https://jsr.io/) or [deno.land/x](https://deno.land/x)
114114

115-
### NPM Modules
115+
### NPM modules
116116

117117
You can import npm modules using the `npm:` specifier:
118118

119119
```ts
120120
import { createClient } from 'npm:@supabase/supabase-js@2'
121121
```
122122

123-
### Node.js Built-ins
123+
### Node.js built-ins
124124

125125
For Node.js built-in APIs, use the `node:` specifier:
126126

@@ -130,7 +130,7 @@ import process from 'node:process'
130130

131131
Learn more about npm specifiers and Node built-in APIs in [Deno's documentation](https://docs.deno.com/runtime/manual/node/npm_specifiers).
132132

133-
### Importing from Private Registries
133+
### Importing from private registries
134134

135135
<Admonition type="info">
136136

apps/docs/content/guides/functions/logging.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ Deno.serve(async (req) => {
6161
})
6262
```
6363

64-
## Logging Tips
64+
## Logging tips
6565

66-
### Logging Request Headers
66+
### Logging request headers
6767

6868
When debugging Edge Functions, a common mistake is to try to log headers to the developer console via code like this:
6969

@@ -88,7 +88,7 @@ The reason behind this behavior is that [Headers](https://developer.mozilla.org/
8888

8989
However, `Headers` objects are iterable. You can utilize this feature to craft a couple of succinct one-liners for debugging and printing headers.
9090

91-
### Convert headers into an object with Object.fromEntries:
91+
### Convert headers into an object with `Object.fromEntries`:
9292

9393
You can use `Object.fromEntries` which is a call to convert the headers into an object:
9494

apps/docs/content/guides/functions/routing.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To combine multiple endpoints into a single Edge Function, you can use web appli
1515

1616
Let's dive into some examples.
1717

18-
## Routing with Frameworks
18+
## Routing with frameworks
1919

2020
Here's a simple hello world example using some popular web frameworks.
2121

@@ -158,7 +158,7 @@ curl --request POST 'https://<project_ref>.supabase.co/functions/v1/hello-world'
158158

159159
We should see a response printing `Hello Foo!`.
160160

161-
## Using Route Parameters
161+
## Using route parameters
162162

163163
We can use route parameters to capture values at specific URL segments (eg: `/tasks/:taskId/notes/:noteId`).
164164

@@ -415,7 +415,7 @@ Deno.serve(async (req) => {
415415
</TabPanel>
416416
</Tabs>
417417

418-
## URL Patterns API
418+
## URL patterns API
419419

420420
If you prefer not to use a web framework, you can directly use [URLPattern API](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) within your Edge Functions to implement routing.
421421
This is ideal for small apps with only couple of routes and you want to have a custom matching algorithm.

apps/docs/content/guides/functions/status-codes.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ description: 'Edge Functions can return following status codes.'
55
subtitle: 'Edge Functions can return following status codes.'
66
---
77

8+
{/* supa-mdx-lint-disable Rule001HeadingCase */}
9+
810
## 2XX Success
911

1012
A successful Edge Function Response

0 commit comments

Comments
 (0)