mirror of
https://github.com/zhigang1992/server-components-demo.git
synced 2026-01-12 17:52:28 +08:00
Co-authored-by: Dan Abramov <dan.abramov@me.com> Co-authored-by: Sebastian Markbåge <sema@fb.com> Co-authored-by: Joseph Savona <josephsavona@users.noreply.github.com> Co-authored-by: Andrew Clark <git@andrewclark.io>
19 lines
371 B
JavaScript
19 lines
371 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.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
jsxBracketSameLine: true,
|
|
trailingComma: 'es5',
|
|
printWidth: 80,
|
|
};
|