Skip to content

Commit d7d9666

Browse files
committed
chore: fix site title layout
1 parent 03a1829 commit d7d9666

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@
1919
"source.fixAll.eslint": "explicit",
2020
"source.fixAll.stylelint": "explicit"
2121
},
22+
"[javascript]": {
23+
"editor.formatOnSave": true
24+
},
25+
"[typescript]": {
26+
"editor.formatOnSave": true
27+
},
28+
"[markdown]": {
29+
"editor.formatOnSave": true
30+
},
31+
"[css]": {
32+
"editor.formatOnSave": true
33+
},
34+
"[scss]": {
35+
"editor.formatOnSave": true
36+
},
37+
"editor.defaultFormatter": "esbenp.prettier-vscode",
2238
"stylelint.validate": [
2339
"css",
2440
"html",

docs/.vitepress/config.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ export default async (): Promise<UserConfig<DefaultTheme.Config>> => {
8383

8484
lastUpdated: true,
8585
themeConfig: {
86+
siteTitle: "eslint-plugin-\njson-schema-validator",
8687
search: {
8788
provider: "local",
8889
options: {

docs/.vitepress/stylelint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ module.exports = {
66
"value-keyword-case": null,
77

88
// Conflict with Prettier
9-
indentation: null,
9+
// indentation: null,
1010
},
1111
};

docs/.vitepress/theme/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ a > img {
22
display: inline-block;
33
}
44

5+
a.title {
6+
white-space: pre-wrap;
7+
}
8+
59
/* Playground */
610
.playground .VPDoc.has-aside .content-container,
711
.playground .VPDoc:not(.has-sidebar) .content,

0 commit comments

Comments
 (0)