mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-05-03 13:15:25 +00:00
0d92648d62
--------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
{
|
|
# https://prettier.io/docs/en/options.html#semicolons
|
|
"semi": false,
|
|
# https://prettier.io/docs/en/options.html#quotes
|
|
"singleQuote": true,
|
|
# https://prettier.io/docs/en/options.html#trailing-commas
|
|
"trailingComma": "es5",
|
|
"overrides": [
|
|
{
|
|
"files": ["index.md", "administration.md"],
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
}
|
|
]
|
|
}
|