fix: eslint warnings (#252)

This commit is contained in:
kimatata
2025-07-20 10:59:57 +09:00
committed by GitHub
parent e6be84b67e
commit 9ae67fd303
118 changed files with 423 additions and 511 deletions

View File

@@ -3,7 +3,7 @@ const fs = require('fs');
const bcrypt = require('bcrypt');
module.exports = {
up: async (queryInterface, Sequelize) => {
up: async (queryInterface) => {
const hashedPassword = await bcrypt.hash('password', 10);
// Add projects table records
@@ -696,7 +696,7 @@ module.exports = {
]);
},
down: async (queryInterface, Sequelize) => {
// do nothingg
down: async () => {
// do nothing
},
};