mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-24 09:33:42 -04:00
28 lines
541 B
Plaintext
28 lines
541 B
Plaintext
{
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"singleAttributePerLine": false,
|
|
"bracketSpacing": false,
|
|
"printWidth": 100,
|
|
"trailingComma": "all",
|
|
"plugins": ["prettier-plugin-sql", "prettier-plugin-packagejson"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.sql",
|
|
"options": {
|
|
"language": "postgresql",
|
|
"keywordCase": "lower",
|
|
"logicalOperatorNewline": "before"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.svg",
|
|
"options": {
|
|
"parser": "html"
|
|
}
|
|
}
|
|
]
|
|
}
|