vben
2021-02-07 a3a903bc86e7248424f94f734d21c86c5327ed20
提交 | 用户 | age
2f6253 1 module.exports = {
2   printWidth: 100,
3   tabWidth: 2,
4   useTabs: false,
5   semi: true,
6   vueIndentScriptAndStyle: true,
7   singleQuote: true,
8   quoteProps: 'as-needed',
9   bracketSpacing: true,
10   trailingComma: 'es5',
11   jsxBracketSameLine: false,
12   jsxSingleQuote: false,
13   arrowParens: 'always',
14   insertPragma: false,
15   requirePragma: false,
16   proseWrap: 'never',
17   htmlWhitespaceSensitivity: 'strict',
18   endOfLine: 'lf',
19   rangeStart: 0,
20   overrides: [
21     {
22       files: '*.md',
23       options: {
24         tabWidth: 2,
25       },
26     },
27   ],
28 };