Turn off some eslint rules

This commit is contained in:
Brandon Presley 2022-11-01 12:30:06 +13:00
parent 3c4bba3f85
commit f56f0063c4
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ module.exports = {
'@typescript-eslint/no-shadow': ['error'],
'no-shadow': 'off',
'no-undef': 'off',
semi: 'off',
curly: 'off',
'react/react-in-jsx-scope': 'off',
'react-native/no-inline-styles': 'off',
},
},
],