Skip to content

Commit dfc6cc5

Browse files
committed
chore: toml-fmt -i -w
1 parent 8beb540 commit dfc6cc5

File tree

6 files changed

+96
-80
lines changed

6 files changed

+96
-80
lines changed

config.toml

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1-
baseURL = 'https://example.org/'
2-
languageCode = 'en-US'
3-
title = 'My New Hugo Site'
1+
baseURL = "https://example.org/"
2+
languageCode = "en-US"
3+
title = "My New Hugo Site"
44

5-
[[menus.main]]
6-
name = 'Home'
7-
pageRef = '/'
8-
weight = 10
5+
[menus]
96

10-
[[menus.main]]
11-
name = 'Posts'
12-
pageRef = '/posts'
13-
weight = 20
7+
[[menus.main]]
8+
name = "Home"
9+
pageRef = "/"
10+
weight = 10
1411

15-
[[menus.main]]
16-
name = 'Tags'
17-
pageRef = '/tags'
18-
weight = 30
12+
[[menus.main]]
13+
name = "Posts"
14+
pageRef = "/posts"
15+
weight = 20
16+
17+
[[menus.main]]
18+
name = "Tags"
19+
pageRef = "/tags"
20+
weight = 30
1921

2022
[module]
21-
[module.hugoVersion]
22-
extended = true
23-
min = "0.140.0"
23+
24+
[module.hugoVersion]
25+
extended = true
26+
min = "0.140.0"

config/_default/hugo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
# https://json.schemastore.org/hugo.json
21
enableEmoji = true
32

43
[build]
5-
[build.buildStats]
6-
enable = true
4+
75
[[build.cachebusters]]
8-
source = 'assets/notwatching/hugo_stats.json'
9-
target = 'css'
6+
source = "assets/notwatching/hugo_stats.json"
7+
target = "css"
8+
109
[[build.cachebusters]]
11-
source = '(postcss|tailwind).config.js'
12-
target = 'css'
10+
source = "(postcss|tailwind).config.js"
11+
target = "css"
12+
13+
[build.buildStats]
14+
enable = true

config/_default/markup.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
# https://json.schemastore.org/hugo.json
21
[goldmark]
2+
33
[goldmark.parser]
4+
45
[goldmark.parser.attribute]
56
block = true
67
title = true
78

89
[highlight]
910
noClasses = false
10-
wrapperClass = 'highlight not-prose'
11+
wrapperClass = "highlight not-prose"
1112

1213
[tableOfContents]
1314
endLevel = 6

config/_default/module.toml

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
1-
# https://json.schemastore.org/hugo.json
2-
[hugoVersion]
3-
extended = false
4-
min = "0.134.2"
51
[[mounts]]
6-
source = 'content'
7-
target = 'content'
2+
source = "content"
3+
target = "content"
4+
85
[[mounts]]
9-
source = 'static'
10-
target = 'static'
6+
source = "static"
7+
target = "static"
8+
119
[[mounts]]
12-
source = 'layouts'
13-
target = 'layouts'
10+
source = "layouts"
11+
target = "layouts"
12+
1413
[[mounts]]
15-
source = 'data'
16-
target = 'data'
14+
source = "data"
15+
target = "data"
16+
1717
[[mounts]]
18-
source = 'assets'
19-
target = 'assets'
18+
source = "assets"
19+
target = "assets"
20+
2021
[[mounts]]
21-
source = 'i18n'
22-
target = 'i18n'
22+
source = "i18n"
23+
target = "i18n"
24+
2325
[[mounts]]
24-
source = 'archetypes'
25-
target = 'archetypes'
26+
source = "archetypes"
27+
target = "archetypes"
28+
2629
[[mounts]]
2730
disableWatch = false
2831
source = "hugo_stats.json"
2932
target = "assets/watching/hugo_stats.json"
33+
34+
[hugoVersion]
35+
extended = false
36+
min = "0.134.2"

pyproject.toml

Lines changed: 28 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
1-
[tool.uv]
2-
package = false
1+
[build-system]
2+
build-backend = "poetry.core.masonry.api"
3+
requires = ["poetry-core>=2.0.0,<3.0.0"]
34

45
[project]
5-
name = "simpl"
6-
version = "0.0.1"
7-
description = ""
8-
authors = [{ name = "Your Name", email = "[email protected]" }]
9-
license = { text = "MIT" }
10-
readme = "README.md"
11-
requires-python = ">=3.10,<3.13"
12-
dependencies = []
13-
14-
[tool.poetry]
6+
dependencies = []
7+
description = ""
8+
name = "simpl"
9+
readme = "README.md"
10+
requires-python = ">=3.10,<3.13"
11+
version = "0.0.1"
12+
13+
[[project.authors]]
14+
15+
name = "Your Name"
16+
17+
[project.license]
18+
text = "MIT"
19+
20+
[tool]
21+
22+
[tool.poetry]
1523
package-mode = false
1624

17-
[tool.poetry.group.dev.dependencies]
18-
pre-commit = "^4.1.0"
25+
[tool.poetry.group]
1926

20-
[build-system]
21-
requires = ["poetry-core>=2.0.0,<3.0.0"]
22-
build-backend = "poetry.core.masonry.api"
27+
[tool.poetry.group.dev]
28+
29+
[tool.poetry.group.dev.dependencies]
30+
pre-commit = "^4.1.0"
31+
32+
[tool.uv]
33+
package = false

theme.toml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
1-
# https://json.schemastore.org/hugo-theme.json
2-
name = 'simpl'
3-
license = 'MIT'
4-
licenselink = 'https://github.com/esacteksab/simpl/LICENSE'
5-
description = 'An attempt at a barebones theme.'
1+
demosite = "https://esacteksab.com"
2+
description = "An attempt at a barebones theme."
3+
features = ["dark", "tailwindcss", "dark-a11y"]
4+
homepage = "https://github.com/esacteksab/simpl"
5+
license = "MIT"
6+
licenselink = "https://github.com/esacteksab/simpl/LICENSE"
7+
name = "simpl"
8+
tags = ["blog"]
69

7-
# The home page of the theme, where the source can be found
8-
homepage = 'https://github.com/esacteksab/simpl'
9-
10-
# If you have a running demo of the theme
11-
demosite = 'https://esacteksab.com'
12-
13-
# Taxonomy terms
14-
tags = ['blog']
15-
features = ['dark', 'tailwindcss', 'dark-a11y']
16-
17-
# If the theme has a single author
1810
[author]
19-
name = 'Barry Morrison'
20-
homepage = 'https://esacteksab.com'
11+
homepage = "https://esacteksab.com"
12+
name = "Barry Morrison"

0 commit comments

Comments
 (0)