Skip to content

Commit

Permalink
chore: address breaking change in eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
double-beep authored Sep 1, 2024
1 parent f13796d commit ca7e040
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,14 @@ export default tseslint.config({
'@stylistic/comma-dangle': 'off',
'@stylistic/indent-binary-ops': 'off',
'@stylistic/space-before-function-paren': 'off',
'@stylistic/type-annotation-spacing': ['warn', {
'before': false,
'after': true,
'overrides': {
'arrow': { 'before': true, 'after': true }}
'@stylistic/type-annotation-spacing': [
'warn',
{
'before': true,
'after': true,
'overrides': {
'colon': { 'before': false, 'after': true }
}
}
],
'@stylistic/array-bracket-spacing': 'off'
Expand Down

0 comments on commit ca7e040

Please sign in to comment.