Enable promise/catch-or-return allowFinally (#14289)

This commit is contained in:
abcang 2020-07-12 06:51:22 +09:00 committed by GitHub
parent da3978c48e
commit bb9d4e2776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -199,6 +199,11 @@ module.exports = {
'import/no-unresolved': 'error',
'import/no-webpack-loader-syntax': 'error',
'promise/catch-or-return': 'error',
'promise/catch-or-return': [
'error',
{
allowFinally: true,
},
],
},
};