.prettierrc 479 B

123456789101112131415161718192021
  1. {
  2. "overrides": [
  3. {
  4. "files": ".prettierrc",
  5. "options": { "parser": "json" }
  6. }
  7. ],
  8. "tabWidth": 2,
  9. "semi": false,
  10. "singleQuote": true,
  11. "arrowParens": "avoid",
  12. "bracketSpacing": true,
  13. "endOfLine": "auto",
  14. "eslintIntegration": false,
  15. "htmlWhitespaceSensitivity": "ignore",
  16. "ignorePath": ".prettierignore",
  17. "requireConfig": false,
  18. "stylelintIntegration": false,
  19. "trailingComma": "es5",
  20. "prettier.tslintIntegration": false
  21. }