We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 802ed22 commit a57da61Copy full SHA for a57da61
docs/rules/valid-expect.md
@@ -66,7 +66,7 @@ This rule is enabled by default.
66
Enforces to use `await` inside block statements. Using `return` will trigger a
67
warning. Returning one line statements with arrow functions is _always allowed_.
68
69
-Examples of **incorrect** code for the { "alwaysAwait": **true** } option:
+Examples of **incorrect** code for the `{ "alwaysAwait": true }` option:
70
71
```js
72
// alwaysAwait: true
@@ -76,7 +76,7 @@ test('test1', async () => {
76
});
77
```
78
79
-Examples of **correct** code for the { "alwaysAwait": **true** } option:
+Examples of **correct** code for the `{ "alwaysAwait": true }` option:
80
81
82
0 commit comments