worker-links/.prettierrc
infra 1bef54163c
Simple web UI for shortlink creation (#15)
* add HTML interface (inlined into typescript) - with CSS and autocomplete hand-holding

* Some changes (listed below)

- Make UI optional and disabled by default
- Lint it in line with other code
- Import UI from a bundled HTML file
- Add UI to README
- Add support for random URL generation
- Show the URL in the output

---------

Co-authored-by: Erisa A <erisa@erisa.uk>
2023-04-30 01:43:20 +01:00

15 lines
225 B
Text

{
"singleQuote": true,
"semi": false,
"trailingComma": "all",
"useTabs": true,
"printWidth": 80,
"overrides": [
{
"files": "src/*.html",
"options": {
"printWidth": 140
}
}
]
}