Blame view

prettier.config.js 425 Bytes
陈文彬 authored
1
2
3
4
5
6
7
8
9
module.exports = {
  printWidth: 100,
  tabWidth: 2,
  useTabs: false,
  semi: true,
  vueIndentScriptAndStyle: true,
  singleQuote: true,
  quoteProps: 'as-needed',
  bracketSpacing: true,
vben authored
10
  trailingComma: 'all',
陈文彬 authored
11
12
13
14
15
16
17
  jsxBracketSameLine: false,
  jsxSingleQuote: false,
  arrowParens: 'always',
  insertPragma: false,
  requirePragma: false,
  proseWrap: 'never',
  htmlWhitespaceSensitivity: 'strict',
18
  endOfLine: 'auto',
陈文彬 authored
19
};