Files
open_dbm/docs/.prettierrc
2022-10-04 03:34:47 +07:00

37 lines
740 B
Plaintext

{
"overrides": [
{
"files": "*.js",
"options": {
"arrowParens": "avoid",
"bracketSpacing": false,
"bracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
}
},
{
"files": "*.md",
"options": {
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": true,
"printWidth": 66,
"proseWrap": "preserve",
"singleQuote": true,
"trailingComma": "none",
"endOfLine": "auto"
}
},
{
"files": ["*.scss", "*.css"],
"options": {
"printWidth": 80,
"endOfLine": "auto"
}
}
]
}