From bd66928464885ff92e1760521fe84f1c45df9743 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 19 Oct 2021 09:20:19 -0700 Subject: [PATCH] Fix Flipper lints #11 Summary: Turning off irrelevant lints for pkg/. Reviewed By: nikoant Differential Revision: D31734972 fbshipit-source-id: 845c4c0b0dea22973bc875ad0f86b5344a30280a --- desktop/pkg/.eslintrc.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 desktop/pkg/.eslintrc.js diff --git a/desktop/pkg/.eslintrc.js b/desktop/pkg/.eslintrc.js new file mode 100644 index 000000000..d97c11ef0 --- /dev/null +++ b/desktop/pkg/.eslintrc.js @@ -0,0 +1,15 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @format + */ + +module.exports = { + rules: { + 'node/no-sync': 'off', + 'flipper/no-console-error-without-context': 'off', + }, +};