Add eslint rule for empty functions

This commit is contained in:
Bill Thornton 2021-11-22 10:36:49 -05:00
parent 97f9573adc
commit 8fefc22669

View File

@ -42,6 +42,7 @@ module.exports = {
'jsx-quotes': ['error', 'prefer-single'],
'keyword-spacing': ['error'],
'max-statements-per-line': ['error'],
'no-empty-function': ['error'],
'no-floating-decimal': ['error'],
'no-multi-spaces': ['error'],
'no-multiple-empty-lines': ['error', { 'max': 1 }],