eslint: don't care about consistent-return in typescript

This commit is contained in:
Alex Gleason 2022-08-01 22:42:30 -05:00
parent 92a5893f83
commit 6d1539cf9c
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 0 deletions

View File

@ -278,6 +278,7 @@ module.exports = {
files: ['**/*.ts', '**/*.tsx'],
rules: {
'no-undef': 'off', // https://stackoverflow.com/a/69155899
'consistent-return': 'off',
},
parser: '@typescript-eslint/parser',
},