Skip to content

Commit

Permalink
fix formatting and globs in package.json (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx authored Dec 27, 2023
1 parent 94a7128 commit cf55eb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions backend/src/data/GuildCounters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ export class GuildCounters extends BaseGuildRepository {

return (await entityManager.findOne(CounterTrigger, {
where: {
id: insertResult.identifiers[0].id
}
id: insertResult.identifiers[0].id,
},
}))!;
});
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "",
"private": true,
"scripts": {
"format": "prettier --write './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'",
"lint": "eslint './backend/src/**/*.{js,ts,tsx}' './dashboard/src/**/*.{js,ts,tsx}'",
"codestyle-check": "prettier --check './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'"
"format": "prettier --write \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\"",
"lint": "eslint \"./backend/src/**/*.{js,ts,tsx}\" \"./dashboard/src/**/*.{js,ts,tsx}\"",
"codestyle-check": "prettier --check \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
Expand Down

0 comments on commit cf55eb1

Please sign in to comment.