@xenon.js/configs
Version:
All common configuration related to JavaScript.
26 lines (25 loc) • 582 B
JavaScript
/**
* 基础配置
*
* @type {import('prettier').Config}
*/
export default {
printWidth: 80,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: false,
quoteProps: "preserve",
jsxSingleQuote: false,
trailingComma: "all",
bracketSpacing: true,
bracketSameLine: false,
arrowParens: "avoid",
proseWrap: "preserve",
htmlWhitespaceSensitivity: "css",
vueIndentScriptAndStyle: false,
endOfLine: "lf",
embeddedLanguageFormatting: "auto",
singleAttributePerLine: false,
experimentalOperatorPosition: "start",
};