diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 00000000000..ac1adffabf6 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,15 @@ +/** + * 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 = { + singleQuote: true, + trailingComma: 'es5', + semi: false, +}