Skip to content

Commit

Permalink
chore: deactivate line break enforcer
Browse files Browse the repository at this point in the history
  • Loading branch information
monfera committed Jan 18, 2021
1 parent b5acaf3 commit 5d69d93
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ module.exports = {
: 0,
'import/namespace': process.env.NODE_ENV === 'production' ? 2 : 0,

/**
*****************************************
* Override overbearing rules
*****************************************
*/
'@typescript-eslint/lines-between-class-members': 0,

/**
*****************************************
* Rules to consider adding/fixing later
Expand Down Expand Up @@ -107,7 +114,6 @@ module.exports = {
'no-bitwise': 0,
'no-void': 0,
yoda: 0,
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'no-restricted-globals': 0,
'no-case-declarations': 0,
'no-return-await': 0,
Expand Down

0 comments on commit 5d69d93

Please sign in to comment.