Files
gemini-cli/.prettierrc.json
T

18 lines
273 B
JSON
Raw Normal View History

2025-04-17 17:57:39 -04:00
{
2025-04-17 18:06:21 -04:00
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"overrides": [
{
"files": ["**/*.md"],
"options": {
"tabWidth": 2,
"printWidth": 80,
"proseWrap": "always"
}
}
]
2025-04-17 17:57:39 -04:00
}