From f56f0063c42d978facdb11be165728cb8a1f7bba Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 1 Nov 2022 12:30:06 +1300 Subject: [PATCH] Turn off some eslint rules --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6b1f939..b31c8dc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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', }, }, ],