From a45da17c48b34f692668592f298a9d4441ee1be9 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 1 Apr 2024 22:58:31 -0700 Subject: Separate ESLint and Prettier (#3373) * Disable legacy Prettier ESLint integration * Run Prettier separately * Add caching * Separate -some and -all * Reduce node inits --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) (limited to '.eslintrc.js') diff --git a/.eslintrc.js b/.eslintrc.js index 6165517f7..6e8e01fe2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,6 +15,8 @@ module.exports = { 'simple-import-sort', ], rules: { + // Temporary until https://github.com/facebook/react-native/pull/43756 gets into a release. + 'prettier/prettier': 0, 'react/no-unescaped-entities': 0, 'react-native/no-inline-styles': 0, 'simple-import-sort/imports': [ -- cgit 1.4.1