Skip to content

Commit

Permalink
add space-infix-ops rule to typescript eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwun Ying (Juliann) Zhou committed Aug 4, 2022
1 parent f3c4ad0 commit c3f3465
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ module.exports = {
rules: {
'react-perf/jsx-no-new-array-as-prop': 'off',
'react-perf/jsx-no-new-function-as-prop': 'off',
'react-perf/jsx-no-new-object-as-prop': 'off'
'react-perf/jsx-no-new-object-as-prop': 'off',
'space-infix-ops': 'off',
'@typescript-eslint/space-infix-ops': ['error', { 'int32Hint': false }]
}
}
]
Expand Down

0 comments on commit c3f3465

Please sign in to comment.