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.

.prettierrc.js 276B

1234567891011121314151617
  1. module.exports = {
  2. tabWidth: 2,
  3. jsxSingleQuote: true,
  4. jsxBracketSameLine: true,
  5. printWidth: 100,
  6. singleQuote: true,
  7. semi: false,
  8. overrides: [
  9. {
  10. files: '*.json',
  11. options: {
  12. printWidth: 200,
  13. },
  14. },
  15. ],
  16. arrowParens: 'always',
  17. };