style: format (#2925)

This commit is contained in:
ITOH
2023-04-01 02:46:46 +02:00
committed by GitHub
parent 4d3a2f7665
commit 05fc3fbeba
85 changed files with 670 additions and 828 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
version: '3.8'
services:
influxdb:
image: "influxdb:2.4.0-alpine"
image: 'influxdb:2.4.0-alpine'
ports:
- 127.0.0.1:8086:8086
env_file:
@@ -41,4 +41,4 @@ services:
deploy:
replicas: 2
env_file:
- .env
- .env
+4 -4
View File
@@ -1,6 +1,6 @@
{
"watch": "./src/**/*.ts",
"ext ": "env,ts",
"signal": "SIGKILL",
"exec": "npm run build && node"
"watch": "./src/**/*.ts",
"ext ": "env,ts",
"signal": "SIGKILL",
"exec": "npm run build && node"
}
+50 -50
View File
@@ -1,51 +1,51 @@
{
"name": "dd-big-bot",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"devbg": "npx prisma generate && tsc --watch",
"fmt": "eslint --fix \"src/**/*.ts*\"",
"devg": "nodemon --ignore ./src/bot/**/* --ignore ./src/rest/**/* --ignore ./dist/**/* -e ts dist/gateway/index.js",
"devr": "nodemon --ignore ./src/bot/**/* --ignore ./src/gateway/**/* --ignore ./dist/**/* -e ts dist/rest/index.js",
"devb": "nodemon --ignore ./src/rest/**/* --ignore ./src/gateway/**/* --ignore ./dist/**/* -e ts dist/bot/index.js",
"type": "tsc --noEmit",
"build": "swc --delete-dir-on-start src --out-dir dist",
"startr": "node dist/rest/index.js",
"startg": "node dist/gateway/index.js",
"startb": "node dist/bot/index.js"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.29.0",
"@prisma/client": "^3.15.2",
"amqplib": "^0.10.3",
"colorette": "^2.0.19",
"discordeno": "^16.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"fastify": "^4.10.2",
"nanoid": "^4.0.0",
"node-fetch": "^3.2.10",
"web-worker": "^1.2.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.9",
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"prisma": "^4.2.1",
"typescript": "^4.6.3"
},
"prettier": {
"trailingComma": "all",
"useTabs": true,
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"printWidth": 120
}
}
"name": "dd-big-bot",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"devbg": "npx prisma generate && tsc --watch",
"fmt": "eslint --fix \"src/**/*.ts*\"",
"devg": "nodemon --ignore ./src/bot/**/* --ignore ./src/rest/**/* --ignore ./dist/**/* -e ts dist/gateway/index.js",
"devr": "nodemon --ignore ./src/bot/**/* --ignore ./src/gateway/**/* --ignore ./dist/**/* -e ts dist/rest/index.js",
"devb": "nodemon --ignore ./src/rest/**/* --ignore ./src/gateway/**/* --ignore ./dist/**/* -e ts dist/bot/index.js",
"type": "tsc --noEmit",
"build": "swc --delete-dir-on-start src --out-dir dist",
"startr": "node dist/rest/index.js",
"startg": "node dist/gateway/index.js",
"startb": "node dist/bot/index.js"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.29.0",
"@prisma/client": "^3.15.2",
"amqplib": "^0.10.3",
"colorette": "^2.0.19",
"discordeno": "^16.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"fastify": "^4.10.2",
"nanoid": "^4.0.0",
"node-fetch": "^3.2.10",
"web-worker": "^1.2.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.9",
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"prisma": "^4.2.1",
"typescript": "^4.6.3"
},
"prettier": {
"trailingComma": "all",
"useTabs": true,
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"printWidth": 120
}
}
@@ -79,6 +79,6 @@ export async function missingTranslation(language: keyof typeof languages, key:
// type translationKeys = keyof typeof english | string
export type translationKeys = keyof typeof english;
type getArgs<K extends translationKeys> = typeof english[K] extends (...any: any[]) => unknown
? Parameters<typeof english[K]>
type getArgs<K extends translationKeys> = (typeof english)[K] extends (...any: any[]) => unknown
? Parameters<(typeof english)[K]>
: [];
@@ -150,7 +150,7 @@ export type ArgumentDefinition =
| SubcommandArgumentDefinition
| SubcommandGroupArgumentDefinition;
type getName<K extends translationKeys> = typeof english[K] extends string ? typeof english[K] : never;
type getName<K extends translationKeys> = (typeof english)[K] extends string ? (typeof english)[K] : never;
// OPTIONALS MUST BE FIRST!!!
export type ConvertArgumentDefinitionsToArgs<T extends readonly ArgumentDefinition[]> = Identity<