Skip to content

Commit

Permalink
fix: rename vale check style
Browse files Browse the repository at this point in the history
  • Loading branch information
agraebe authored and Alexander Graebe committed Dec 17, 2020
1 parent 7f49d1d commit 534c7eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ If you are interested in contributing to the site and making changes, please ref
This repository uses [vale](https://github.com/errata-ai/vale) to run style checks. Make sure to install the tool and run the following command before creating a PR in order to check for styling issues:

```bash
yarn vale:check
yarn check:style
```

### Blockstack CLI reference
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"dev": "yarn clean:build-files && next dev",
"build:cli-reference": "stx docs > src/_data/cli-reference.json",
"export": "next export",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn vale:check",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn check:style",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" -f unix",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" -f unix --fix",
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx,md,mdx}\" *.js",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ecosystem/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ fetch external data at runtime and use it in some way within our pages.
We use the [Google Developer documentation style guides](https://developers.google.com/style/) in this project. Make sure to install [vale](https://github.com/errata-ai/vale) and run the style checks before you create a PR:

```bash
yarn vale:check
yarn check:style
```

### Always use Markdown when possible
Expand Down

0 comments on commit 534c7eb

Please sign in to comment.