prettier 2

Summary:
Quick notes:

- This looks worse than it is. It adds mandatory parentheses to single argument lambdas. Lots of outrage on Twitter about it, personally I'm {emoji:1f937_200d_2642} about it.
- Space before function, e.g. `a = function ()` is now enforced. I like this because both were fine before.
- I added `eslint-config-prettier` to the config because otherwise a ton of rules conflict with eslint itself.

Close https://github.com/facebook/flipper/pull/915

Reviewed By: jknoxville

Differential Revision: D20594929

fbshipit-source-id: ca1c65376b90e009550dd6d1f4e0831d32cbff03
This commit is contained in:
Pascal Hartig
2020-03-24 09:34:39 -07:00
committed by Facebook GitHub Bot
parent d9d3be33b4
commit fc9ed65762
204 changed files with 877 additions and 864 deletions

View File

@@ -41,7 +41,7 @@ class PredefinedComment extends Component<{
selected: boolean;
onClick: (_: unknown) => unknown;
}> {
static Container = styled.div<{selected: boolean}>(props => {
static Container = styled.div<{selected: boolean}>((props) => {
return {
border: '1px solid #f2f3f5',
cursor: 'pointer',
@@ -151,9 +151,9 @@ class FeedbackComponent extends Component<
const selectedPredefinedComments: Array<string> = Object.entries(
this.state.predefinedComments,
)
.map(x => ({comment: x[0], enabled: x[1]}))
.filter(x => x.enabled)
.map(x => x.comment);
.map((x) => ({comment: x[0], enabled: x[1]}))
.filter((x) => x.enabled)
.map((x) => x.comment);
const currentRating = this.state.rating;
if (currentRating) {
this.props.submitComment(
@@ -189,9 +189,11 @@ class FeedbackComponent extends Component<
}}>
<Glyph
name={
(this.state.hoveredRating
? index < this.state.hoveredRating
: index < (this.state.rating || 0))
(
this.state.hoveredRating
? index < this.state.hoveredRating
: index < (this.state.rating || 0)
)
? 'star'
: 'star-outline'
}
@@ -236,8 +238,8 @@ class FeedbackComponent extends Component<
style={{height: 30, width: '100%'}}
placeholder={this.props.promptData.commentPlaceholder}
value={this.state.comment}
onChange={e => this.setState({comment: e.target.value})}
onKeyDown={e =>
onChange={(e) => this.setState({comment: e.target.value})}
onKeyDown={(e) =>
e.key == 'Enter' && this.onCommentSubmitted(this.state.comment)
}
autoFocus={true}
@@ -296,7 +298,7 @@ class RatingButton extends Component<PropsFromState, State> {
constructor(props: PropsFromState) {
super(props);
if (GK.get('flipper_rating')) {
UserFeedback.getPrompt().then(prompt => {
UserFeedback.getPrompt().then((prompt) => {
this.setState({promptData: prompt});
setTimeout(this.triggerPopover.bind(this), 30000);
});