jsx-eslint/eslint-plugin-react

Feature request: Add autofixing for this.props.someProp(some_values) to const { someProp } = this.props; someProp(some_values)

Open

#2,768 opened on 2020年8月24日

GitHub で見る
 (12 comments) (0 reactions) (1 assignee)JavaScript (8,630 stars) (2,797 forks)batch import
enhancementhelp wanted

説明

Add autofixing for this.props.someProp(some_values) to const { someProp } = this.props; someProp(some_values)

Before: this.props.someProp(some_values)

After: const { someProp } = this.props; someProp(some_values)

コントリビューターガイド