mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 05:41:57 -04:00

enforce trailing commas as this is the norm in the frontend and makes diffs better readable Signed-off-by: Philip Molares <philip.molares@udo.edu>
11 lines
218 B
JSON
11 lines
218 B
JSON
{
|
|
"parser": "typescript",
|
|
"singleQuote": true,
|
|
"jsxSingleQuote": true,
|
|
"semi": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": true,
|
|
"bracketSameLine": true,
|
|
"arrowParens": "always"
|
|
}
|