mirror of
https://github.com/plankanban/planka.git
synced 2025-08-09 15:35:29 +02:00
Add no-shadow and no-unused-vars rules
- no shadow to allow reusing variable name for different function args - no unused vars to help up speed up development when adding or removing as well as testing new things
This commit is contained in:
parent
0088646b70
commit
ad2a881e6e
1 changed files with 2 additions and 0 deletions
|
@ -40,6 +40,8 @@
|
||||||
"../package.json"
|
"../package.json"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
|
"no-unused-vars": "warn",
|
||||||
|
"no-shadow": "off",
|
||||||
"import/no-extraneous-dependencies": [
|
"import/no-extraneous-dependencies": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue