.prettierrc.cjs 311 B

12345678910111213141516171819
  1. // @see https://prettier.io/docs/en/options
  2. module.exports = {
  3. singleQuote: true,
  4. printWidth: 100,
  5. tabWidth: 2,
  6. useTabs: false,
  7. semi: false,
  8. trailingComma: 'all',
  9. endOfLine: 'auto',
  10. overrides: [
  11. {
  12. files: '*.json',
  13. options: {
  14. trailingComma: 'none',
  15. },
  16. },
  17. ],
  18. }