Skip to content

Commit cf5c465

Browse files
committed
wip
1 parent d04261b commit cf5c465

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

.eslintrc.js

+3-11
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,9 @@ module.exports = {
1919
sourceType: 'module',
2020
},
2121
rules: {
22-
// Allow unused vars that start with underscore
23-
// https://stackoverflow.com/a/64067915
24-
"no-unused-vars": "off",
25-
"@typescript-eslint/no-unused-vars": [
26-
"error",
27-
{
28-
"argsIgnorePattern": "^_",
29-
"varsIgnorePattern": "^_",
30-
"caughtErrorsIgnorePattern": "^_"
31-
}
32-
]
22+
'no-unused-vars': ['error', {
23+
'varsIgnorePattern': '^_'
24+
}],
3325
},
3426
plugins: ['jest'],
3527
};

0 commit comments

Comments
 (0)