From 7b78ba1f6dd48f1c7c150c883edd43f0854cf65f Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Sat, 24 Apr 2021 19:23:07 +0200 Subject: [PATCH] update eslint config --- .eslintrc.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 40c6dcd..31afb26 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,4 +1,12 @@ module.exports = { root: true, extends: '@react-native-community', + rules: { + 'react/jsx-pascal-case': [ + 'warn', + { + ignore: [], + }, + ], + }, };