2022-12-30 20:33:56 -08:00
|
|
|
/**
|
|
|
|
* 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 = {
|
2023-05-09 15:35:42 -07:00
|
|
|
arrowParens: 'avoid',
|
|
|
|
bracketSameLine: true,
|
|
|
|
bracketSpacing: false,
|
|
|
|
singleQuote: true,
|
|
|
|
trailingComma: 'all',
|
2022-12-30 20:33:56 -08:00
|
|
|
};
|