Replace tslint by eslint

This commit is contained in:
Jonas Lochmann 2022-07-25 02:00:00 +02:00
parent 2f0ca96d7d
commit c70c0d131a
No known key found for this signature in database
GPG key ID: 8B8C9AEE10FA5B36
6 changed files with 2134 additions and 357 deletions

View file

@ -1,6 +1,6 @@
/*
* TimeLimit Server Admin UI
* Copyright (C) 2020 Jonas Lochmann
* Copyright (C) 2020 - 2022 Jonas Lochmann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
@ -17,7 +17,7 @@
import { Api, ApiCreator, IllegalAccessDataError } from './api'
const delay = (time: number) => new Promise((resolve, _) => {
const delay = (time: number) => new Promise((resolve) => {
setTimeout(() => resolve(), time)
})