[ci] format

This commit is contained in:
natemoo-re 2022-03-25 22:01:50 +00:00 committed by GitHub Actions
parent 109693bb05
commit 192d703563
4 changed files with 38 additions and 38 deletions

View file

@ -27,7 +27,7 @@
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
adapter: netlify(),
adapter: netlify(),
});
```
@ -47,7 +47,7 @@
import nodejs from '@astrojs/node';
export default {
adapter: nodejs(),
adapter: nodejs(),
};
```
@ -107,7 +107,7 @@
import nodejs from '@astrojs/node';
export default {
adapter: nodejs(),
adapter: nodejs(),
};
```
@ -203,7 +203,7 @@
import { defineConfig } from 'astro/config';
export default defineConfig({
renderers: [],
renderers: [],
});
```
@ -241,9 +241,9 @@
```json
{
"scripts": {
"build": "astro build --legacy-build"
}
"scripts": {
"build": "astro build --legacy-build"
}
}
```
@ -263,7 +263,7 @@
```ts
if (Astro.slots.has('default')) {
const content = await Astro.slots.render('default');
const content = await Astro.slots.render('default');
}
```
@ -347,7 +347,7 @@
```ts
if (Astro.slots.has('default')) {
const content = await Astro.slots.render('default');
const content = await Astro.slots.render('default');
}
```
@ -371,9 +371,9 @@
```json
{
"scripts": {
"build": "astro build --legacy-build"
}
"scripts": {
"build": "astro build --legacy-build"
}
}
```
@ -485,12 +485,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/',
}),
};
}
```
@ -652,12 +652,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/',
}),
};
}
```
@ -2012,10 +2012,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' }]],
},
};
```
@ -2035,10 +2035,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

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

View file

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

View file

@ -187,10 +187,10 @@
```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' }]],
},
};
```