diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-24 14:59:42 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-24 14:59:42 -0700 |
commit | 04468eb1b7cccc6dcee127c7a89d001fa2ea352b (patch) | |
tree | b4eb7eed60fe4894cc0d49c4d28ab968dad5e235 /.eslintrc.js | |
parent | 9673225f78f656038b2db11062d8e397c81568bf (diff) | |
download | voidsky-04468eb1b7cccc6dcee127c7a89d001fa2ea352b.tar.zst |
make prettier and eslint work together
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 2d59d36dd..19fcf2308 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,6 +1,10 @@ module.exports = { root: true, - extends: ['@react-native-community', 'plugin:react-native-a11y/ios'], + extends: [ + '@react-native-community', + 'plugin:react-native-a11y/ios', + 'prettier', + ], parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'detox'], ignorePatterns: [ |