prettier.config.js 317 B

1234567891011121314
  1. module.exports = {
  2. printWidth: 200,
  3. tabWidth: 4,
  4. useTabs: false,
  5. semi: false,
  6. singleQuote: true,
  7. arrowParens: 'avoid',
  8. bracketSpacing: true,
  9. disableLanguages: [],
  10. eslintIntegration: false,
  11. stylelintIntegration: false,
  12. tslintIntegration: false,
  13. proseWrap: 'preserve',
  14. }