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

@@ -40,7 +40,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('users');
},
};

View File

@@ -42,7 +42,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('projects');
},
};

View File

@@ -42,7 +42,7 @@ module.exports = {
});
},
async down(queryInterface, Sequelize) {
async down(queryInterface) {
await queryInterface.dropTable('folders');
},
};

View File

@@ -46,7 +46,7 @@ module.exports = {
});
},
async down(queryInterface, Sequelize) {
async down(queryInterface) {
await queryInterface.dropTable('runs');
},
};

View File

@@ -66,7 +66,7 @@ module.exports = {
});
},
async down(queryInterface, Sequelize) {
async down(queryInterface) {
await queryInterface.dropTable('cases');
},
};

View File

@@ -28,7 +28,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('steps');
},
};

View File

@@ -46,7 +46,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('caseSteps');
},
};

View File

@@ -32,7 +32,7 @@ module.exports = {
});
},
async down(queryInterface, Sequelize) {
async down(queryInterface) {
await queryInterface.dropTable('attachments');
},
};

View File

@@ -42,7 +42,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('caseAttachments');
},
};

View File

@@ -46,7 +46,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('runCases');
},
};

View File

@@ -46,7 +46,7 @@ module.exports = {
});
},
down: async (queryInterface, Sequelize) => {
down: async (queryInterface) => {
await queryInterface.dropTable('members');
},
};

View File

@@ -2,7 +2,7 @@
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
async up(queryInterface) {
/**
* Add altering commands here.
*
@@ -15,7 +15,7 @@ module.exports = {
await queryInterface.renameColumn('users', 'avatarPath', 'avatar_path');
},
async down(queryInterface, Sequelize) {
async down() {
/**
* Add reverting commands here.
*