mirror of
https://github.com/rajnandan1/kener.git
synced 2026-01-06 01:20:15 -06:00
72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
{
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.svelte",
|
|
"options": {
|
|
"parser": "svelte",
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"printWidth": 120
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.ts", "*.tsx", "*.cjs", "*.mjs"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "all",
|
|
"printWidth": 120
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.json", ".prettierrc"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"semi": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"printWidth": 120
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.yaml", "*.yml"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"semi": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "none",
|
|
"printWidth": 80
|
|
}
|
|
},
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"useTabs": false,
|
|
"semi": false,
|
|
"tabWidth": 4,
|
|
"trailingComma": "none",
|
|
"printWidth": 180
|
|
}
|
|
},
|
|
{
|
|
"files": "Dockerfile",
|
|
"options": {
|
|
"useTabs": true,
|
|
"tabWidth": 4,
|
|
"semi": false,
|
|
"trailingComma": "none",
|
|
"printWidth": 120
|
|
}
|
|
}
|
|
]
|
|
}
|