Files
flipper/desktop/pkg/.eslintrc.js
Pascal Hartig bd66928464 Fix Flipper lints #11
Summary: Turning off irrelevant lints for pkg/.

Reviewed By: nikoant

Differential Revision: D31734972

fbshipit-source-id: 845c4c0b0dea22973bc875ad0f86b5344a30280a
2021-10-19 09:21:36 -07:00

16 lines
324 B
JavaScript

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