.prettierrc 378 B

1234567891011121314151617181920
  1. {
  2. "bracketSpacing": false,
  3. "bracketSameLine": false,
  4. "printWidth": 90,
  5. "semi": true,
  6. "singleQuote": true,
  7. "tabWidth": 2,
  8. "trailingComma": "es5",
  9. "useTabs": false,
  10. "arrowParens": "avoid",
  11. "plugins": ["prettier-plugin-jinja-template"],
  12. "overrides": [
  13. {
  14. "files": ["*.html"],
  15. "options": {
  16. "parser": "jinja-template"
  17. }
  18. }
  19. ]
  20. }