kubeload/.prettierrc
2026-02-12 07:24:02 -08:00

32 lines
595 B
Text

{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"tabWidth": 1
}
},
{
"files": "*.jinja",
"options": {
"tabWidth": 1
}
}
],
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}