Fix Flipper lints #11

Summary: Turning off irrelevant lints for pkg/.

Reviewed By: nikoant

Differential Revision: D31734972

fbshipit-source-id: 845c4c0b0dea22973bc875ad0f86b5344a30280a
This commit is contained in:
Pascal Hartig
2021-10-19 09:20:19 -07:00
committed by Facebook GitHub Bot
parent b3fa8dd6c1
commit bd66928464

15
desktop/pkg/.eslintrc.js Normal file
View File

@@ -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',
},
};