Summary: Turning off irrelevant lints for pkg/. Reviewed By: nikoant Differential Revision: D31734972 fbshipit-source-id: 845c4c0b0dea22973bc875ad0f86b5344a30280a
16 lines
324 B
JavaScript
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',
|
|
},
|
|
};
|