Skip to content

Commit

Permalink
Add member-delimiter-style
Browse files Browse the repository at this point in the history
  • Loading branch information
JHWelch committed Oct 31, 2024
1 parent 423650b commit 14402c5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,18 @@ export default [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
],
'@stylistic/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
},
singleline: {
delimiter: 'comma',
requireLast: false,
},
multilineDetection: 'brackets',
},
],
},
}]

0 comments on commit 14402c5

Please sign in to comment.