mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-12-27 23:28:44 +08:00
23 lines
510 B
JavaScript
23 lines
510 B
JavaScript
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'all',
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
rangeStart: 0,
|
|
rangeEnd: Infinity,
|
|
requirePragma: false,
|
|
insertPragma: false,
|
|
proseWrap: 'preserve',
|
|
htmlWhitespaceSensitivity: 'css',
|
|
endOfLine: 'lf',
|
|
singleAttributePerLine: false,
|
|
bracketSameLine: false,
|
|
plugins: ['@ianvs/prettier-plugin-sort-imports'],
|
|
}
|