mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-28 00:54:16 +00:00
Prettier
This commit is contained in:
@@ -43,6 +43,6 @@ module.exports = function (config) {
|
||||
error.stdout.replaceAll(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, "")
|
||||
);
|
||||
}
|
||||
if(config.throwOnError) throw error;
|
||||
if (config.throwOnError) throw error;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,4 +1,16 @@
|
||||
import { Column, CreateDateColumn, Entity, Index, JoinColumn, JoinTable, ManyToMany, ManyToOne, OneToMany, Relation, RelationId } from "typeorm";
|
||||
import {
|
||||
Column,
|
||||
CreateDateColumn,
|
||||
Entity,
|
||||
Index,
|
||||
JoinColumn,
|
||||
JoinTable,
|
||||
ManyToMany,
|
||||
ManyToOne,
|
||||
OneToMany,
|
||||
Relation,
|
||||
RelationId
|
||||
} from "typeorm";
|
||||
import { InteractionType } from "../interfaces/Interaction";
|
||||
import { Application } from "./Application";
|
||||
import { Attachment } from "./Attachment";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Column, Entity, FindOneOptions, FindOptionsSelectByString, JoinColumn, OneToMany, OneToOne, Relation } from "typeorm";
|
||||
import { Member, Session, UserSettings } from ".";
|
||||
import { Session, UserSettings } from ".";
|
||||
import { Config, FieldErrors, Snowflake, trimSpecial } from "..";
|
||||
import { BitField } from "../util/BitField";
|
||||
import { OrmUtils } from "../util/imports/OrmUtils";
|
||||
|
||||
Reference in New Issue
Block a user