Blame view

.prettierrc.js 363 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',
vben authored
10
  plugins: ['prettier-plugin-packagejson'],
vben authored
11
12
13
14
15
16
17
18
  overrides: [
    {
      files: '.*rc',
      options: {
        parser: 'json',
      },
    },
  ],
陈文彬 authored
19
};