Skip to content

Commit 96a5d73

Browse files
style: fix indentation for typescript unused vars rule
1 parent 4711af8 commit 96a5d73

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/configs/base.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ export function createBaseConfig(options: InstantConfig = {}): FlatConfigArray {
5858
'error',
5959
{ prefer: 'type-imports', fixStyle: 'inline-type-imports' },
6060
],
61-
'@typescript-eslint/no-unused-vars': [
62-
'warn',
63-
{
64-
args: 'none',
65-
ignoreRestSiblings: true,
66-
varsIgnorePattern: '_',
67-
},
68-
],
61+
'@typescript-eslint/no-unused-vars': [
62+
'warn',
63+
{
64+
args: 'none',
65+
ignoreRestSiblings: true,
66+
varsIgnorePattern: '_',
67+
},
68+
],
6969
'@typescript-eslint/no-explicit-any': 'warn',
7070
'@typescript-eslint/no-empty-object-type': 'off',
7171
'@typescript-eslint/no-namespace': 'off',

0 commit comments

Comments
 (0)