suppress lint error if unused var starts with _

This commit is contained in:
nklhrstv 2021-03-22 16:14:58 +02:00
parent 1be55b6530
commit f00eeaf1dd

View file

@ -69,7 +69,12 @@
"no-trailing-spaces": "error", "no-trailing-spaces": "error",
"no-useless-concat": "error", "no-useless-concat": "error",
"no-unreachable": "error", "no-unreachable": "error",
"no-unused-vars": "error", "no-unused-vars": [
"error",
{
"varsIgnorePattern": "_"
}
],
"prefer-const": "error", "prefer-const": "error",
"quotes": [ "quotes": [
"error", "error",