Skip to content

Commit 729cd2a

Browse files
committed
refactor: nit
1 parent cf526c0 commit 729cd2a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
paths-ignore:
1010
- "docs/**"
1111
- "*.md"
12+
- "*.example"
13+
- "docker-compose.yml"
1214
pull_request:
1315
paths-ignore:
1416
- "docs/**"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ services:
1111
- db_data:/var/lib/mysql
1212

1313
volumes:
14-
db_data:
14+
db_data:

src/plugins/custom/authorization.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export default fp(
3737
async function (fastify) {
3838
fastify.decorate('isModerator', isModerator)
3939
fastify.decorate('isAdmin', isAdmin)
40-
// You should name your plugins if you want to avoid name collisions
41-
// and/or to perform dependency checks.
4240
},
41+
// You should name your plugins if you want to avoid name collisions
42+
// and/or to perform dependency checks.
4343
{ name: 'authorization' }
4444
)

0 commit comments

Comments
 (0)