Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1204 For expandability, consistency with other tasks, and added explicitness. Reviewed By: huntie Differential Revision: D42285129 fbshipit-source-id: 2b76a7dba7474bfae98509740c13c3e173fa9a27
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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 = {
|
|
trailingComma: "es5",
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: false,
|
|
};
|