1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-09 07:25:24 +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:
Rafly Maulana 2022-11-21 00:15:05 +07:00
parent 0088646b70
commit ad2a881e6e
No known key found for this signature in database
GPG key ID: 9AADAF05ED276842

View file

@ -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",
{ {