Files
server-components-demo/.prettierrc.js
Lauren Tan 74f4274996 Initial commit
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>
2020-12-21 11:01:40 -05:00

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,
};