Blame view

prettier.config.js 215 Bytes
陈文彬 authored
1
2
3
4
5
module.exports = {
  printWidth: 100,
  semi: true,
  vueIndentScriptAndStyle: true,
  singleQuote: true,
vben authored
6
  trailingComma: 'all',
陈文彬 authored
7
8
  proseWrap: 'never',
  htmlWhitespaceSensitivity: 'strict',
9
  endOfLine: 'auto',
陈文彬 authored
10
};