From 89110dc48160787e906988817214624f9a195359 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Thu, 8 Jul 2021 11:04:48 +0200 Subject: [PATCH] Ignore `app.plugin.js` with ESLint --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 8b563a5..13b7c29 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,7 +10,7 @@ module.exports = { ecmaVersion: 2018, sourceType: 'module', }, - ignorePatterns: ['scripts', 'lib', 'docs'], + ignorePatterns: ['scripts', 'lib', 'docs', 'app.plugin.js'], plugins: ['@typescript-eslint', 'react', 'react-native', '@react-native-community', 'prettier', 'react-hooks'], extends: [ 'eslint:recommended',