Skip to content

Commit ec90739

Browse files
committed
Add missing no-unused-vars
1 parent 180e4cb commit ec90739

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = {
55
'@typescript-eslint/explicit-function-return-type': 'off',
66
// Temporarily disable this rule
77
'@typescript-eslint/no-floating-promises': 'off',
8+
'@typescript-eslint/no-unused-vars': 'error',
89
// Forbids `any` in _falsy_ expressions
910
'@typescript-eslint/strict-boolean-expressions': [
1011
'error',
@@ -37,6 +38,7 @@ module.exports = {
3738
tabWidth: 4,
3839
},
3940
],
41+
'no-unused-vars': 'off',
4042
'sort-keys': [
4143
'error',
4244
'asc',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-gitduck",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "GitDuck ESLint shared configuration",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)