Summary: This is from a larger lint task but I'm pulling this out separately. Sync only matters to us in the context of UI where it can block the main loop. Here it's fine. Reviewed By: timur-valiev Differential Revision: D31290130 fbshipit-source-id: 9a156ce549a1249b2b08f16e3afef6e5cd1e5441
15 lines
269 B
JavaScript
15 lines
269 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',
|
|
},
|
|
};
|