Skip to content

Commit

Permalink
Format packages/parsing/* with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
acusti committed Mar 22, 2024
1 parent 919b288 commit 1f89c7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/parsing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ yarn add @acusti/parsing

Import `parseAsJSON` (it’s a named export) and pass a string to it:

```js
````js
import { parseAsJSON } from '@acusti/parsing';

// it might neglect to close the outer curly braces
Expand Down Expand Up @@ -128,7 +128,7 @@ parseAsJSON(
],
}
*/
```
````

Again, there are more examples of the kinds of things that the parser can
handle in the [unit tests][].
Expand Down
3 changes: 1 addition & 2 deletions packages/parsing/src/as-json.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,7 @@ Here are some of the services we offer:
contentLi: '',
});

response =
' Here is a sample JSON output for the "Branding Portfolio"';
response = ' Here is a sample JSON output for the "Branding Portfolio"';
expect(parseAsJSON(response)).toEqual('');

response = `\
Expand Down

0 comments on commit 1f89c7b

Please sign in to comment.