Skip to content

Commit 886db04

Browse files
committed
eslint config formatted
1 parent 8011123 commit 886db04

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

eslint.config.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,15 @@ module.exports = [
1515
semi: 'error',
1616
quotes: ['error', 'single'],
1717
indent: ['error', 4, { 'SwitchCase': 1 }],
18-
'no-unused-vars': ['warn', { 'varsIgnorePattern': '^_', 'args': 'after-used', 'argsIgnorePattern': '^_' }]
18+
'no-unused-vars':
19+
[
20+
'warn',
21+
{
22+
'varsIgnorePattern': '^_',
23+
'args': 'after-used',
24+
'argsIgnorePattern': '^_'
25+
}
26+
]
1927
},
2028
ignores: ['snippets/*', 'scripts/*']
2129
},

0 commit comments

Comments
 (0)