Enforce no mixed tabs and spaces

This commit is contained in:
Alex Gleason 2020-04-18 14:04:18 -05:00
parent 59096462ca
commit ce19fc3cde
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ module.exports = {
],
'no-fallthrough': 'error',
'no-irregular-whitespace': 'error',
'no-mixed-spaces-and-tabs': 'warn',
'no-mixed-spaces-and-tabs': 'error',
'no-nested-ternary': 'warn',
'no-trailing-spaces': 'warn',
'no-undef': 'error',

View file

@ -44,8 +44,8 @@ class GroupPage extends ImmutablePureComponent {
<div className='columns-area__panels__pane__inner'>
{group && relationships &&
<GroupPanel
group={group}
relationships={relationships}
group={group}
relationships={relationships}
/>}
<PromoPanel />