eslint: disable consistent-return

This commit is contained in:
Alex Gleason 2022-08-11 15:28:42 -05:00
parent bf5d3b241a
commit c5d46d1a15
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 0 additions and 2 deletions

View File

@ -78,7 +78,6 @@ module.exports = {
'space-infix-ops': 'error',
'space-in-parens': ['error', 'never'],
'keyword-spacing': 'error',
'consistent-return': 'error',
'dot-notation': 'error',
eqeqeq: 'error',
indent: ['error', 2, {
@ -278,7 +277,6 @@ module.exports = {
files: ['**/*.ts', '**/*.tsx'],
rules: {
'no-undef': 'off', // https://stackoverflow.com/a/69155899
'consistent-return': 'off',
},
parser: '@typescript-eslint/parser',
},