Skip to content

Commit f83fe1b

Browse files
committed
run prettier
1 parent 21a901f commit f83fe1b

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

astro.config.mjs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ import { favicons } from "favicons";
77
const base = "/nemo-doc";
88

99
async function faviconPlugin(options) {
10-
const icons = await favicons("./logo/build/without-text/nemo-logo-rusty-nomargin.svg", options);
10+
const icons = await favicons(
11+
"./logo/build/without-text/nemo-logo-rusty-nomargin.svg",
12+
options,
13+
);
1114
return {
1215
name: "vite-plugin-favicons",
1316
order: "pre",
@@ -50,7 +53,7 @@ export default defineConfig({
5053
light: "./src/assets/nemo-logo-rusty-nomargin.svg",
5154
},
5255
customCss: [
53-
"./src/tailwind.css",
56+
"./src/tailwind.css",
5457
"./src/styles/custom.css",
5558
// Fontsource files for to regular and semi-bold font weights.
5659
"@fontsource/comfortaa/400.css",
@@ -61,7 +64,7 @@ export default defineConfig({
6164
github: "https://github.com/knowsys/nemo",
6265
},
6366
components: {
64-
SiteTitle: "./src/components/SiteTitle.astro"
67+
SiteTitle: "./src/components/SiteTitle.astro",
6568
},
6669
sidebar: [
6770
{

src/content/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { defineCollection } from 'astro:content';
2-
import { docsSchema } from '@astrojs/starlight/schema';
1+
import { defineCollection } from "astro:content";
2+
import { docsSchema } from "@astrojs/starlight/schema";
33

44
export const collections = {
5-
docs: defineCollection({ schema: docsSchema(), })
5+
docs: defineCollection({ schema: docsSchema() }),
66
};

tailwind.config.mjs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/** @type {import('tailwindcss').Config} */
2-
import starlightPlugin from '@astrojs/starlight-tailwind';
3-
import colors from 'tailwindcss/colors';
2+
import starlightPlugin from "@astrojs/starlight-tailwind";
3+
import colors from "tailwindcss/colors";
44

55
const nemo_blue = {
6-
'950': '#0c2227',
7-
'900': '#18434e',
8-
'600': '#2a768a',
9-
'200': '#8cbfcc',
6+
950: "#0c2227",
7+
900: "#18434e",
8+
600: "#2a768a",
9+
200: "#8cbfcc",
1010
};
1111

1212
export default {
13-
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
13+
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
1414
theme: {
1515
extend: {
1616
colors: {
1717
nemo_blue,
18-
rust: '#9c6f30',
18+
rust: "#9c6f30",
1919
accent: nemo_blue,
2020
},
2121
},
2222
},
2323
plugins: [starlightPlugin()],
24-
}
24+
};

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"extends": "astro/tsconfigs/strict"
3-
}
3+
}

0 commit comments

Comments
 (0)