vscode-pull-request-github/.prettierrc

24 строки
362 B
Plaintext

{
"arrowParens": "avoid",
"endOfLine": "lf",
"trailingComma": "all",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json" }
},
{
"files": "*.md",
"options": { "tabWidth": 2 }
},
{
"files": "*.yml",
"options": { "tabWidth": 2 }
}
]
}