forked from supabase/supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupa-mdx-lint.config.toml
48 lines (47 loc) · 1.1 KB
/
supa-mdx-lint.config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
ignore_patterns = ["**/_*.mdx"]
# Heading should be sentence case
[Rule001HeadingCase]
# Words that may be uppercased even if they are not the first word in the sentence.
# Can also specify a regex that is compatible with the [Rust regex crate](https://docs.rs/regex/latest/regex/).
may_uppercase = [
"[A-Z]{3,5}",
"Android",
"Angular",
"Apple",
"Auth",
"Content Delivery Network",
"Dart",
"Edge Functions",
"Flutter",
"GoTrue",
"Google",
"GraphQL",
"Ionic Angular",
"Ionic React",
"Ionic Vue",
"JavaScript",
"Kotlin",
"Next.js",
"Nuxt",
"OpenAI",
"Postgres",
"PostgreSQL",
"PostgREST",
"React",
"React Native",
"RedwoodJS",
"Row Level Security",
"Server-Side Auth",
"Single Sign-On",
"SolidJS",
"Supabase",
"Svelte",
"SvelteKit",
"Swift",
"SwiftUI",
"Xcode",
"Vue",
]
# Words that may be lowercased even if they are the first word in the sentence.
# Can also specify a regex that is compatible with the [Rust regex crate](https://docs.rs/regex/latest/regex/).
may_lowercase = []