[Glitch] Enforce stricter rules for Typescript files
Port c8181eb0a4
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
542f2fb1e0
commit
0b1556b7f7
|
@ -1,6 +1,6 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import Check from 'flavours/glitch/components/check';
|
||||
import { Check } from 'flavours/glitch/components/check';
|
||||
import classNames from 'classnames';
|
||||
|
||||
const ProgressIndicator = ({ steps, completed }) => (
|
||||
|
@ -22,4 +22,4 @@ ProgressIndicator.propTypes = {
|
|||
completed: PropTypes.number,
|
||||
};
|
||||
|
||||
export default ProgressIndicator;
|
||||
export default ProgressIndicator;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import Icon from 'flavours/glitch/components/icon';
|
||||
import Check from 'flavours/glitch/components/check';
|
||||
import { Icon } from 'flavours/glitch/components/icon';
|
||||
import { Check } from 'flavours/glitch/components/check';
|
||||
|
||||
const Step = ({ label, description, icon, completed, onClick, href }) => {
|
||||
const content = (
|
||||
|
@ -46,4 +46,4 @@ Step.propTypes = {
|
|||
onClick: PropTypes.func,
|
||||
};
|
||||
|
||||
export default Step;
|
||||
export default Step;
|
||||
|
|
|
@ -7,7 +7,7 @@ import { connect } from 'react-redux';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { defineMessages, injectIntl, FormattedMessage, FormattedHTMLMessage } from 'react-intl';
|
||||
import classNames from 'classnames';
|
||||
import Icon from 'flavours/glitch/components/icon';
|
||||
import { Icon } from 'flavours/glitch/components/icon';
|
||||
import ArrowSmallRight from './components/arrow_small_right';
|
||||
import { Link } from 'react-router-dom';
|
||||
import SwipeableViews from 'react-swipeable-views';
|
||||
|
@ -190,4 +190,4 @@ class Share extends React.PureComponent {
|
|||
|
||||
}
|
||||
|
||||
export default connect(mapStateToProps)(injectIntl(Share));
|
||||
export default connect(mapStateToProps)(injectIntl(Share));
|
||||
|
|
Loading…
Reference in New Issue