style: Prettier everything
This commit is contained in:
parent
46f4b9d14a
commit
934eecd9c9
@ -119,8 +119,8 @@ function formatLevel(value: any): ColoredString {
|
||||
}
|
||||
|
||||
const browserLogger = {
|
||||
serialize: true,
|
||||
write,
|
||||
serialize: true,
|
||||
write
|
||||
};
|
||||
|
||||
export default browserLogger;
|
||||
|
@ -37,11 +37,7 @@ export class Database {
|
||||
}
|
||||
}
|
||||
|
||||
async createAll() {
|
||||
}
|
||||
|
||||
async insertTestData() {
|
||||
|
||||
const NUM = 100;
|
||||
const users: User[] = [];
|
||||
for (let i = 0; i < NUM; i++) {
|
||||
|
@ -5,7 +5,7 @@ import { createApp, ServerState, WebSocketApi } from "../";
|
||||
import log from "@common/logger";
|
||||
|
||||
export default class ManageCommand extends Command {
|
||||
run(): Promise<any> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
run(): Promise<any> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
|
@ -150,7 +150,8 @@ export class PinoPrettyTransform extends Transform {
|
||||
}
|
||||
|
||||
export default class PrettyCommand extends Command {
|
||||
static description = "Transforms sprinklers3 log output into a pretty, colorized format";
|
||||
static description =
|
||||
"Transforms sprinklers3 log output into a pretty, colorized format";
|
||||
|
||||
async run(): Promise<any> {
|
||||
pump(process.stdin, split(), new PinoPrettyTransform(), process.stdout);
|
||||
|
@ -15,7 +15,10 @@ const errorHandler: express.ErrorRequestHandler = (
|
||||
// TODO: different content-type?
|
||||
res.status(err.statusCode).json(err.toJSON(isDev));
|
||||
} else {
|
||||
const internalError = new ApiError("An internal server error has occurred", ErrorCode.Internal);
|
||||
const internalError = new ApiError(
|
||||
"An internal server error has occurred",
|
||||
ErrorCode.Internal
|
||||
);
|
||||
errorHandler(internalError, req, res, next);
|
||||
}
|
||||
};
|
||||
|
@ -38,8 +38,6 @@ export class ServerState {
|
||||
}
|
||||
|
||||
async start() {
|
||||
await Promise.all([
|
||||
this.startDatabase(), this.startMqtt(),
|
||||
]);
|
||||
await Promise.all([this.startDatabase(), this.startMqtt()]);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user