-
Notifications
You must be signed in to change notification settings - Fork 93
/
mkdocs.yml
45 lines (40 loc) · 1.03 KB
/
mkdocs.yml
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
site_name: 'Twitter Jetpack Compose Rules'
site_description: 'Twitter Compose Rules is a set of custom ktlint rules to ensure that your composables do not fall into common pitfalls'
site_author: 'Twitter'
site_url: 'https://twitter.github.io/compose-rules/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: docs
repo_name: 'Compose Rules'
repo_url: 'https://github.com/twitter/compose-rules'
# Navigation
nav:
- 'Overview': index.md
- 'Using with ktlint': ktlint.md
- 'Using with Detekt': detekt.md
- 'Ruleset': rules.md
# Configuration
theme:
name: 'material'
language: 'en'
palette:
primary: 'light blue'
accent: 'indigo'
font:
text: 'Roboto'
code: 'JetBrains Mono'
icon:
logo: material/twitter
# Extensions
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.details