Skip to content

Commit 5c985cb

Browse files
authored
style: remove trailing whitespace (#419)
1 parent 7441be8 commit 5c985cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Autoload can be customised using the following options:
140140
141141
142142
- `scriptPattern` (optional) - Regex to override the script files accepted by default. You should only use this option
143-
with a [customization hooks](https://nodejs.org/docs/latest/api/module.html#customization-hooks)
143+
with a [customization hooks](https://nodejs.org/docs/latest/api/module.html#customization-hooks)
144144
provider, such as `ts-node`. Otherwise, widening the acceptance extension here will result in error.
145145
146146

test/module/autohooks/routes/.autohooks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function (app, opts) {
1+
export default async function (app, opts) {
22
app.addHook('onRequest', async (req, reply) => {
33
req.hooked = req.hooked || []
44
req.hooked.push('root')

test/module/autohooks/routes/child/.autohooks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function (app, opts) {
1+
export default async function (app, opts) {
22
app.addHook('onRequest', async (req, reply) => {
33
req.hooked = req.hooked || []
44
req.hooked.push('child')

test/module/autohooks/routes/child/grandchild/.autohooks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function (app, opts) {
1+
export default async function (app, opts) {
22
app.addHook('onRequest', async (req, reply) => {
33
req.hooked = req.hooked || []
44
req.hooked.push('grandchild')

0 commit comments

Comments
 (0)