jeecg-boot-vue3/prettier.config.js

21 lines
488 B
JavaScript
Raw Permalink Normal View History

2021-10-20 06:32:09 +00:00
module.exports = {
2022-09-22 06:05:12 +00:00
printWidth: 150,
2021-10-20 06:32:09 +00:00
tabWidth: 2,
useTabs: false,
semi: true, //语句末尾使用分号
2021-10-20 06:32:09 +00:00
vueIndentScriptAndStyle: true,
singleQuote: true, // 使用单引号
2021-10-20 06:32:09 +00:00
quoteProps: 'as-needed',
bracketSpacing: true,
trailingComma: 'es5',
jsxBracketSameLine: false,
2021-10-20 06:32:09 +00:00
jsxSingleQuote: false,
arrowParens: 'always',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
rangeStart: 0,
};