Skip to content

Commit

Permalink
fix: update extensions in editorconfig and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sewera committed Nov 13, 2023
1 parent bc5affc commit b2d857c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ charset = utf-8
indent_style = tab
indent_size = 4

[*.md,*.yaml,*.yml]
[*.{md,yaml,yml}]
indent_style = space
indent_size = 2

Expand Down
44 changes: 21 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Minimal frontmatter

```yaml
---
layout: ../layouts/Post.astro
title: Title
date: 1970-01-01
---
Expand All @@ -18,7 +17,6 @@ Complete frontmatter

```yaml
---
layout: ../layouts/Post.astro
title: Title
subtitle: Subtitle
date: 1970-01-01
Expand All @@ -30,35 +28,35 @@ draftDescription: This is a draft # default: This is a draft article. It may be
imgUrl: /image.jpg # default: null
imgDescription: Sample image # default: ''
abstract: | # default: ''
A short description of an article
A short description of an article
keywords: # default []
- kw1
- kw2
- kw1
- kw2
---
```

## Prerequisites

- Install [Go](https://go.dev)
- Install [Go](https://go.dev)

## Development

- Run tests:
```sh
yarn test
```
or:
```sh
yarn test:watch
```
- Run tests with the snapshot updates:
```sh
yarn test:update
```
- Run a development server:
```sh
yarn dev
```
- Run tests:
```sh
yarn test
```
or:
```sh
yarn test:watch
```
- Run tests with the snapshot updates:
```sh
yarn test:update
```
- Run a development server:
```sh
yarn dev
```

## Deploy and rollback

Expand All @@ -85,7 +83,7 @@ export default defineConfig({
test: {
isolate: true,
},
})
});
```

### Vitest VSCode integration
Expand Down

0 comments on commit b2d857c

Please sign in to comment.