fix: safely ignore unused variables starting with underscore
This commit is contained in:
parent
aa074d16c1
commit
5254a49ebe
@ -10,5 +10,9 @@ module.exports = {
|
|||||||
'warn',
|
'warn',
|
||||||
{ allowConstantExport: true },
|
{ allowConstantExport: true },
|
||||||
],
|
],
|
||||||
|
'@typescript-eslint/no-unused-vars': [
|
||||||
|
"error",
|
||||||
|
{ varsIgnorePattern: '^_' }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user