fixed eslint comma dangling

This commit is contained in:
Fredrick W. Warren 2021-02-15 08:43:55 -08:00
parent f46d10d26f
commit 65b76d2255

View File

@ -65,6 +65,9 @@ module.exports = {
'import/no-extraneous-dependencies': 'off',
'prefer-promise-reject-errors': 'off',
// fww
'comma-dangle': 'always-multiline'
// allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'