Add eslint rules & make lint fixes

This commit is contained in:
Amanda Bullington
2021-09-15 11:16:47 -07:00
parent bc71c97055
commit a839f7867c
9 changed files with 1387 additions and 570 deletions

View File

@@ -1,4 +1,10 @@
module.exports = {
root: true,
extends: '@react-native-community',
extends: "@react-native-community",
rules: {
quotes: [2, "double"],
"comma-dangle": [2, "never"],
"space-in-parens": [2, "always"],
"prettier/prettier": 0
}
};