Skip to content

Commit

Permalink
Update ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
BoscoDomingo committed Jun 5, 2023
1 parent d5c8026 commit e31ae2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ module.exports = {
'@typescript-eslint/default-param-last': 'warn',
'dot-notation': 'off',
'@typescript-eslint/dot-notation': 'error',
'lines-between-class-members': ["warn", "always", { "exceptAfterSingleLine": true }],
'@typescript-eslint/lines-between-class-members': 'warn', // No support from Prettier for this https://github.com/prettier/prettier/issues/1603
'lines-between-class-members': 'off',
'@typescript-eslint/lines-between-class-members':["warn", "always", { "exceptAfterSingleLine": true, 'exceptAfterOverload': true }], // No support from Prettier for this https://github.com/prettier/prettier/issues/1603
'no-await-in-loop': 'warn',
'no-constructor-return': 'error',
'import/order': [
Expand Down

0 comments on commit e31ae2a

Please sign in to comment.