We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d36b59 commit d13844bCopy full SHA for d13844b
.eslintrc.js
@@ -1,4 +1,7 @@
1
module.exports = {
2
root: true,
3
- extends: "@react-native-community"
+ extends: '@react-native-community',
4
+ rules: {
5
+ 'arrow-parens': 'as-needed',
6
+ },
7
};
.prettierrc.js
@@ -2,5 +2,6 @@ module.exports = {
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
- trailingComma: "all"
+ trailingComma: 'all',
+ arrowParens: 'avoid',
0 commit comments