eslint ignore unused variables with underscore prefix

This commit is contained in:
Stefan Forstenlechner 2022-04-17 14:09:57 +02:00
parent e96bd7c25e
commit cad692b9db
1 changed files with 7 additions and 1 deletions

View File

@ -24,7 +24,13 @@
"tsx": "never"
}
],
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
},
"settings": {
"import/resolver": {