[ci] format

This commit is contained in:
natemoo-re 2022-04-06 21:41:37 +00:00 committed by GitHub Actions
parent 1d0c1d8977
commit 5b51d81889
2 changed files with 33 additions and 33 deletions

View file

@ -150,7 +150,7 @@
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
adapter: netlify(),
adapter: netlify(),
});
```
@ -170,7 +170,7 @@
import nodejs from '@astrojs/node';
export default {
adapter: nodejs(),
adapter: nodejs(),
};
```
@ -230,7 +230,7 @@
import nodejs from '@astrojs/node';
export default {
adapter: nodejs(),
adapter: nodejs(),
};
```
@ -326,7 +326,7 @@
import { defineConfig } from 'astro/config';
export default defineConfig({
renderers: [],
renderers: [],
});
```
@ -364,9 +364,9 @@
```json
{
"scripts": {
"build": "astro build --legacy-build"
}
"scripts": {
"build": "astro build --legacy-build"
}
}
```
@ -386,7 +386,7 @@
```ts
if (Astro.slots.has('default')) {
const content = await Astro.slots.render('default');
const content = await Astro.slots.render('default');
}
```
@ -470,7 +470,7 @@
```ts
if (Astro.slots.has('default')) {
const content = await Astro.slots.render('default');
const content = await Astro.slots.render('default');
}
```
@ -494,9 +494,9 @@
```json
{
"scripts": {
"build": "astro build --legacy-build"
}
"scripts": {
"build": "astro build --legacy-build"
}
}
```
@ -608,12 +608,12 @@
```typescript
// src/pages/company.json.ts
export async function get() {
return {
body: JSON.stringify({
name: 'Astro Technology Company',
url: 'https://astro.build/',
}),
};
return {
body: JSON.stringify({
name: 'Astro Technology Company',
url: 'https://astro.build/',
}),
};
}
```
@ -775,12 +775,12 @@
```typescript
// src/pages/company.json.ts
export async function get() {
return {
body: JSON.stringify({
name: 'Astro Technology Company',
url: 'https://astro.build/',
}),
};
return {
body: JSON.stringify({
name: 'Astro Technology Company',
url: 'https://astro.build/',
}),
};
}
```
@ -2135,10 +2135,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
```js
export default {
markdownOptions: {
remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
},
markdownOptions: {
remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
},
};
```
@ -2158,10 +2158,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
```js
export default {
name: '@matthewp/my-renderer',
server: './server.js',
client: './client.js',
hydrationPolyfills: ['./my-polyfill.js'],
name: '@matthewp/my-renderer',
server: './server.js',
client: './client.js',
hydrationPolyfills: ['./my-polyfill.js'],
};
```

View file

@ -31,6 +31,6 @@
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
adapter: netlify(),
adapter: netlify(),
});
```