Enforce no mixed tabs and spaces
This commit is contained in:
parent
59096462ca
commit
ce19fc3cde
2 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ module.exports = {
|
||||||
],
|
],
|
||||||
'no-fallthrough': 'error',
|
'no-fallthrough': 'error',
|
||||||
'no-irregular-whitespace': 'error',
|
'no-irregular-whitespace': 'error',
|
||||||
'no-mixed-spaces-and-tabs': 'warn',
|
'no-mixed-spaces-and-tabs': 'error',
|
||||||
'no-nested-ternary': 'warn',
|
'no-nested-ternary': 'warn',
|
||||||
'no-trailing-spaces': 'warn',
|
'no-trailing-spaces': 'warn',
|
||||||
'no-undef': 'error',
|
'no-undef': 'error',
|
||||||
|
|
|
@ -44,8 +44,8 @@ class GroupPage extends ImmutablePureComponent {
|
||||||
<div className='columns-area__panels__pane__inner'>
|
<div className='columns-area__panels__pane__inner'>
|
||||||
{group && relationships &&
|
{group && relationships &&
|
||||||
<GroupPanel
|
<GroupPanel
|
||||||
group={group}
|
group={group}
|
||||||
relationships={relationships}
|
relationships={relationships}
|
||||||
/>}
|
/>}
|
||||||
|
|
||||||
<PromoPanel />
|
<PromoPanel />
|
||||||
|
|
Loading…
Reference in a new issue