mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
635ac1ba53
Summary: Since Prettier 2.0, the default for the `arrowParens` option has changed from `avoid` to `always`. In preparation for upgrading Prettier in Xplat to 2.1, add `arrowParens: 'avoid'` explicitly to configurations that were missing it so that we do not have a change of behaviour when upgrading. Changelog: [Internal] Reviewed By: bolinfest Differential Revision: D23666397 fbshipit-source-id: 665f20d1419d0d664a6ef5cddc46f441b20eeb51
9 lines
160 B
Plaintext
9 lines
160 B
Plaintext
{
|
|
"requirePragma": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": false,
|
|
"jsxBracketSameLine": true,
|
|
"arrowParens": "avoid"
|
|
}
|