Disable sync rules for sub-projects
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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
ed80dcf26c
commit
3a93d48e05
14
desktop/babel-transformer/.eslintrc.js
Normal file
14
desktop/babel-transformer/.eslintrc.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 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',
|
||||
},
|
||||
};
|
||||
14
desktop/doctor/.eslintrc.js
Normal file
14
desktop/doctor/.eslintrc.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 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',
|
||||
},
|
||||
};
|
||||
14
desktop/eslint-plugin-flipper/.eslintrc.js
Normal file
14
desktop/eslint-plugin-flipper/.eslintrc.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 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',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user