Yongmin Hong
8865e172f9
Summary: Docs: https://prettier.io/docs/en/configuration#sharing-configurations To be published @ npm and imported elsewhere. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: no test can be performed at this time; needs to be landed, published to npm, and then we can test from other tepo importing this. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D302
40 lines
755 B
JavaScript
40 lines
755 B
JavaScript
// @ts-check
|
|
/**
|
|
* @file revi's prettier config preset
|
|
* @see https://prettier.io/docs/en/configuration.html
|
|
* @type {import("prettier").Config}
|
|
* @copyright Hong Yongmin 2024
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
const config = {
|
|
bracketSpacing: false,
|
|
bracketSameLine: true,
|
|
proseWrap: 'preserve',
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
overrides: [
|
|
{
|
|
files: '.arcconfig',
|
|
options: {parser: 'json'},
|
|
},
|
|
{
|
|
files: '.arclint',
|
|
options: {parser: 'json'},
|
|
},
|
|
{
|
|
files: '.arcunit',
|
|
options: {parser: 'json'},
|
|
},
|
|
{
|
|
files: '.imgbotconfig',
|
|
options: {parser: 'json'},
|
|
},
|
|
{
|
|
files: '.yamllint',
|
|
options: {parser: 'yaml'},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|