Yongmin Hong
a67b75e02f
Summary: `**/*` rules. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: verify the globs are as expected. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Tags: #npm Differential Revision: https://issuetracker.revi.xyz/D516
84 lines
2.2 KiB
Markdown
84 lines
2.2 KiB
Markdown
# @revi/prettier-config
|
|
|
|
[![NPM Version](https://img.shields.io/npm/v/%40revi%2Fprettier-config?logo=npm&cacheSeconds=600)](https://www.npmjs.com/package/@revi/prettier-config)
|
|
[![GitHub License](https://img.shields.io/github/license/revi/sandbox?logo=apache&cacheSeconds=600)](https://github.com/revi/sandbox/tree/master/npm/prettier-config)
|
|
|
|
This is [@revi](https://revi.xyz/)'s personal [prettier](https://prettier.io/docs/en/) config.
|
|
|
|
## Config
|
|
|
|
```js
|
|
const config = {
|
|
bracketSpacing: false,
|
|
bracketSameLine: true,
|
|
proseWrap: 'preserve',
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
plugins: [
|
|
// https://github.com/prettier/plugin-php
|
|
'@prettier/plugin-php',
|
|
// https://github.com/un-ts/prettier/tree/master/packages/sh
|
|
'prettier-plugin-sh',
|
|
// https://github.com/bd82/toml-tools/tree/master/packages/prettier-plugin-toml
|
|
'prettier-plugin-toml',
|
|
// https://github.com/prettier/plugin-xml
|
|
'@prettier/plugin-xml',
|
|
],
|
|
overrides: [
|
|
// Sort by parser alphabet.
|
|
{
|
|
files: ['.arcconfig', '.arclint', '.arcunit', '.imgbotconfig'],
|
|
options: {parser: 'json'},
|
|
},
|
|
{
|
|
files: [
|
|
'**/*.hujson',
|
|
'.devcontainer.json',
|
|
'.devcontainer/**/devcontainer.json',
|
|
'.vscode/**/*.json',
|
|
'**/jsconfig.json',
|
|
'**/jsconfig.*.json',
|
|
'**/tsconfig.json',
|
|
'**/tsconfig.*.json',
|
|
],
|
|
options: {parser: 'jsonc', trailingComma: 'none'},
|
|
},
|
|
{
|
|
files: '*.php',
|
|
options: {
|
|
parser: 'php',
|
|
phpVersion: '8.1',
|
|
useTabs: true,
|
|
tabWidth: 4,
|
|
braceStyle: '1tbs',
|
|
},
|
|
},
|
|
{
|
|
files: [
|
|
'.editorconfig',
|
|
'.gitattributes',
|
|
'.gitignore',
|
|
'.prettierignore',
|
|
],
|
|
options: {parser: 'sh', keepPadding: true, minify: false},
|
|
},
|
|
{
|
|
files: ['*.svg', '*.xml'],
|
|
options: {
|
|
parser: 'xml',
|
|
singleAttributePerLine: false,
|
|
xmlQuoteAttributes: 'preserve',
|
|
xmlSelfClosingSpace: true,
|
|
xmlSortAttributesByKey: false,
|
|
xmlWhitespaceSensitivity: 'strict',
|
|
},
|
|
},
|
|
{
|
|
files: '.yamllint',
|
|
options: {parser: 'yaml'},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|
|
```
|