MangoRecipe/.prettierrc

21 lines
390 B
Plaintext

{
"arrowParens": "always",
"endOfLine": "lf",
"proseWrap": "preserve",
"quoteProps": "consistent",
"trailingComma": "all",
"printWidth": 140,
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"useTabs": false,
"overrides": [
{
"files": ["*.liquid"],
"options": {
"parser": "angular"
}
}
]
}