Skip to content

Commit

Permalink
fix: disable comma dangle
Browse files Browse the repository at this point in the history
  • Loading branch information
0t4u committed Aug 11, 2024
1 parent 97d1a12 commit ef013ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default tseslint.config(
'@stylistic/type-named-tuple-spacing': [ 'error' ],
'@stylistic/type-annotation-spacing': [ 'error', { 'before': false, 'after': true, 'overrides': { 'arrow': { 'before': true, 'after': true }}}],
'@stylistic/quotes': [ 'error', 'single' ],
'@stylistic/comma-dangle': [ 'error', 'always-multiline' ],
'@stylistic/comma-dangle': [ 'error', 'never' ],
'@stylistic/brace-style': [ 'error', '1tbs' ],
'@stylistic/object-curly-spacing': [ 'error', 'always', { 'objectsInObjects': false, 'arraysInObjects': false }],
'@stylistic/array-bracket-spacing': [ 'error', 'always', { 'objectsInArrays': false, 'arraysInArrays': false }],
Expand Down

0 comments on commit ef013ac

Please sign in to comment.