diff --git a/.eslintrc b/.eslintrc index c388cfa..533b4e5 100644 --- a/.eslintrc +++ b/.eslintrc @@ -13,6 +13,22 @@ ], "rules": { "no-console": 1, // Means warning - "prettier/prettier": 2 // Means error - } + "prettier/prettier": 2, // Means error + "no-unused-vars": [ + 1, + { + "vars": "all", + "args": "after-used" + } + ] + }, + "overrides": [ + { + "files": [ + "*/src/example.ts" + ], + "rules": { + "no-console": "off" + } + }] } \ No newline at end of file