Files
yoga/javascript/.prettierrc.js
Nick Gerleman 37657a439a Make cmakeBuildTask accept opts instead of array (#1204)
Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1204

For expandability, consistency with other tasks, and added explicitness.

Differential Revision: D42285129

fbshipit-source-id: 96ae133414c142f7cef5938ef45059b8386a44f8
2022-12-29 20:27:34 -08:00

16 lines
314 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,
};