Skip to content

Commit

Permalink
feat: enable eol-last, no-trailing-spaces, array-bracket-spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ripecosta committed Dec 20, 2024
1 parent f13e07f commit 5461e44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ module.exports = {
{ before: false, after: true, overrides: { arrow: { before: true, after: true } } },
],
'@typescript-eslint/member-delimiter-style': 'error',
'array-bracket-spacing': ['error', 'always'],
'eol-last': ['error', 'always'],
'no-trailing-spaces': ['error'],
'array-bracket-spacing': ['error', 'never'],
'comma-dangle': ['error', 'always-multiline'],
'@typescript-eslint/comma-dangle': ['error', 'always-multiline'],
'max-len': [
Expand Down

0 comments on commit 5461e44

Please sign in to comment.