Remove unused comments
This commit is contained in:
parent
93a1e67f86
commit
ab7b4f525b
|
@ -4,7 +4,6 @@ function regexpCapture (str: string, regex: RegExp, maxIterations = 100) {
|
|||
let m: RegExpExecArray
|
||||
let i = 0
|
||||
|
||||
// tslint:disable:no-conditional-assignment
|
||||
while ((m = regex.exec(str)) !== null && i < maxIterations) {
|
||||
// This is necessary to avoid infinite loops with zero-width matches
|
||||
if (m.index === regex.lastIndex) {
|
||||
|
|
|
@ -56,7 +56,6 @@ async function up (utils: {
|
|||
}
|
||||
|
||||
{
|
||||
// tslint:disable:no-trailing-whitespace
|
||||
const query1 =
|
||||
`
|
||||
INSERT INTO "actor"
|
||||
|
|
|
@ -50,7 +50,6 @@ export class SQLCommand extends AbstractCommand {
|
|||
async countVideoViewsOf (uuid: string) {
|
||||
const seq = this.getSequelize()
|
||||
|
||||
// tslint:disable
|
||||
const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' +
|
||||
`INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'`
|
||||
|
||||
|
|
Loading…
Reference in New Issue