mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-27 09:38:09 -05:00
style: silence warning for empty function
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user