-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmkdocs.yml
134 lines (129 loc) · 3.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
site_name: Unimport
site_description:
🚀 The ultimate linter and formatter for removing unused import statements in your
code.
site_url: https://unimport.hakancelik.dev
repo_url: https://github.com/hakancelikdev/unimport
repo_name: hakancelikdev/unimport
edit_uri: https://github.com/hakancelikdev/unimport/tree/main/docs
copyright: Copyright © 2019 - 2024 Hakan Çelik
markdown_extensions:
- fenced_code
- footnotes
- tables
- codehilite
- legacy_em
- meta
- sane_lists
- smarty
- toc:
permalink: true
baselevel: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: hakancelikdev
repo: unimport
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
separator: '[\s\-\.]+'
- git-revision-date-localized:
type: date
enable_creation_date: true
- minify:
minify_html: true
- mike:
canonical_version: latest
extra:
version:
provider: mike
default: latest
analytics:
provider: google
property: G-2EGM5WWEED
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well as to
measure the effectiveness of our documentation and whether users find what they're
searching for. With your consent, you're helping us to make our documentation
better.
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/hakancelikdev
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/hakancelikdev
- icon: fontawesome/solid/globe
link: https://hakancelik.dev
homepage: https://unimport.hakancelik.dev
theme:
name: material
custom_dir: docs/overrides
language: en
features:
- navigation.instant
- navigation.tracking
- navigation.indexes
- search.suggest
- search.highlight
- search.share
- header.autohide
- navigation.top
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Noto Sans
code: Roboto Mono
icon:
repo: fontawesome/brands/github-alt
edit: material/file-document-edit-outline
nav:
- Overview: index.md
- Installation: installation.md
- User Guide:
- tutorial/command-line-options.md
- tutorial/supported-behaviors.md
- tutorial/other-useful-features.md
- tutorial/configurations.md
- tutorial/use-with-pre-commit.md
- tutorial/use-with-docker.md
- tutorial/use-with-github-action.md
- Contributing: CONTRIBUTING.md
- Changelog: CHANGELOG.md
- Authors: AUTHORS.md