vben-admin-thin-next/prettier.config.js

19 lines
396 B
JavaScript
Raw Normal View History

2020-09-28 20:19:10 +08:00
module.exports = {
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
quoteProps: 'as-needed',
bracketSpacing: true,
2021-08-24 22:41:48 +08:00
trailingComma: 'all',
2020-09-28 20:19:10 +08:00
jsxSingleQuote: false,
arrowParens: 'always',
insertPragma: false,
requirePragma: false,
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
2020-09-28 20:19:10 +08:00
};