@aktiga/prettier-plugin-class-breaker
Version:
A fork of Francis Gregori's Prettier Plugin of the same name
39 lines (38 loc) • 604 B
JSON
{
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-multiline-arrays",
"prettier-plugin-merge"
],
"bracketSameLine": false,
"printWidth": 120,
"semi": false,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"trailingComma": "es5",
"multilineArraysWrapThreshold": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"**/*.css",
"**/*.html"
],
"options": {
"singleQuote": false
}
},
{
"files": [
"**/*.yml",
"**/*.yaml"
],
"options": {
"useTabs": false,
"tabWidth": 4
}
}
]
}