Files
firezone/.prettierrc.json
Jamil 1c2c350b8f docs: update Apple docs for standalone guidance (#7589)
Updated the swift/apple README with new added tips for making release
builds from your local machine.

refs #7581

---------

Signed-off-by: Jamil <jamilbk@users.noreply.github.com>
Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
2024-12-29 21:36:30 +00:00

26 lines
479 B
JSON

{
"endOfLine": "lf",
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"proseWrap": "preserve",
"overrides": [
{
"files": ["swift/apple/*.md", "website/**/*.md", "website/**/*.mdx"],
"options": {
"proseWrap": "always"
}
},
{
"files": [
"website/src/app/blog/**/*.md",
"website/src/app/blog/**/*.mdx"
],
"options": {
"proseWrap": "preserve"
}
}
]
}