eslint ignore unused variables with underscore prefix
This commit is contained in:
parent
e96bd7c25e
commit
cad692b9db
|
|
@ -24,7 +24,13 @@
|
|||
"tsx": "never"
|
||||
}
|
||||
],
|
||||
"import/prefer-default-export": "off"
|
||||
"import/prefer-default-export": "off",
|
||||
"no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
"argsIgnorePattern": "^_"
|
||||
}
|
||||
]
|
||||
},
|
||||
"settings": {
|
||||
"import/resolver": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue