mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
29 lines
561 B
Plaintext
29 lines
561 B
Plaintext
{
|
|
"arrowParens": "avoid",
|
|
"bracketSpacing": true,
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"insertPragma": false,
|
|
"jsxSingleQuote": false,
|
|
"proseWrap": "always",
|
|
"quoteProps": "as-needed",
|
|
"requirePragma": false,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"useTabs": true,
|
|
"printWidth": 120,
|
|
"plugins": ["prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"],
|
|
"overrides": [
|
|
{
|
|
"files": ".*.ts"
|
|
},
|
|
{
|
|
"files": [".github/workflows/*.yml", "*.md"],
|
|
"options": {
|
|
"printWidth": 9999
|
|
}
|
|
}
|
|
]
|
|
}
|