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();
|
||||
app.use(errorMiddleware);
|
||||
|
||||
function init() {}
|
||||
function init() {
|
||||
// eslint-disable-previous-line @typescript-eslint/no-empty-function
|
||||
}
|
||||
|
||||
function hashPassword(password) {
|
||||
return bcrypt.hashSync(password, 12);
|
||||
|
|
Loading…
Reference in a new issue