You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
317 B

10 months ago
  1. module.exports = {
  2. printWidth: 80,
  3. tabWidth: 2,
  4. trailingComma: 'none', //尾随逗号
  5. bracketSpacing: true,
  6. jsxBracketSameLine: false,
  7. arrowParens: 'always',
  8. parser: 'typescript',
  9. semi: false,
  10. singleQuote: true,
  11. jsxSingleQuote: false,
  12. endOfLine: 'lf',
  13. parser: 'babel',
  14. proseWrap: 'always'
  15. }