fix: safely ignore unused variables starting with underscore

This commit is contained in:
p-sw 2024-06-14 22:54:06 +09:00
parent aa074d16c1
commit 5254a49ebe

View File

@ -10,5 +10,9 @@ module.exports = {
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-unused-vars': [
"error",
{ varsIgnorePattern: '^_' }
]
},
}