Skip to content

Commit

Permalink
Ignore formatting in the tapes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorntonMatthewD committed Oct 7, 2023
1 parent 9817a05 commit 7f196b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Talkback Tapes
*.json5
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ npm run test:unit:dev
This project utilizes the [talkback](https://github.com/ijpiantanida/talkback) package to save responses received from external dependencies into fixtures (called tapes) that can be used in subsequent set suite executions.

If the upstream data source's response schema is altered you can run the following command to "freshen things up" and overwrite any previously recorded responses:

```sh
OVERWRITE_TAPES=1 npm run test:unit:dev
```
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"test:all": "run-p build test:unit test:e2e type-check lint-check",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore; prettier --write . --ignore-path .gitignore",
"lint-check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix-dry-run --ignore-path .gitignore && prettier --check . --ignore-path .gitignore"
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore; prettier --write . --ignore-path .gitignore --ignore-path .prettierignore",
"lint-check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix-dry-run --ignore-path .gitignore && prettier --check . --ignore-path .gitignore --ignore-path .prettierignore"
},
"dependencies": {
"@types/geojson": "^7946.0.10",
Expand Down

0 comments on commit 7f196b4

Please sign in to comment.