1234567891011121314151617181920 |
- {
- "bracketSpacing": false,
- "bracketSameLine": false,
- "printWidth": 90,
- "semi": true,
- "singleQuote": true,
- "tabWidth": 2,
- "trailingComma": "es5",
- "useTabs": false,
- "arrowParens": "avoid",
- "plugins": ["prettier-plugin-jinja-template"],
- "overrides": [
- {
- "files": ["*.html"],
- "options": {
- "parser": "jinja-template"
- }
- }
- ]
- }
|