style: silence warning for empty function
This commit is contained in:
parent
592f0540f9
commit
8dbc10efd7
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ let { getAccountDb } = require('./account-db');
|
||||||
let app = express();
|
let app = express();
|
||||||
app.use(errorMiddleware);
|
app.use(errorMiddleware);
|
||||||
|
|
||||||
function init() {}
|
function init() {
|
||||||
|
// eslint-disable-previous-line @typescript-eslint/no-empty-function
|
||||||
|
}
|
||||||
|
|
||||||
function hashPassword(password) {
|
function hashPassword(password) {
|
||||||
return bcrypt.hashSync(password, 12);
|
return bcrypt.hashSync(password, 12);
|
||||||
|
|
Loading…
Reference in a new issue