@actinc/prettier-config
Version:
Prettier configurations
24 lines (22 loc) • 492 B
JavaScript
/**
* Copyright (c) ACT, 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.
*
* @prettier
*/
/** @type {import('prettier').Config} */
module.exports = {
arrowParens: 'avoid',
bracketSpacing: true,
insertPragma: true,
printWidth: 80,
proseWrap: 'preserve',
requirePragma: true,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
};