commons/.prettierrc

16 lines
280 B
Plaintext
Raw Normal View History

2019-01-23 11:15:27 +01:00
{
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 4,
"endOfLine": "lf",
"overrides": [
{
"files": ["*.{json,yml,yaml,md}"],
"options": {
"tabWidth": 2
}
}
]
}