3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-06 18:47:20 +00:00

fix fix formatting and globs in package.json

This commit is contained in:
almeidx 2023-12-27 16:13:44 +00:00
parent fdefca17ae
commit 33162263f9
No known key found for this signature in database
GPG key ID: 54402591B9053451
2 changed files with 5 additions and 5 deletions

View file

@ -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,
},
}))!;
});
}

View file

@ -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",