repo.or.cz
/
svrjs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix: disable legacy server-side JavaScript in webroot by default in YAML-format confi...
[svrjs.git]
/
prettier.config.js
blob
5a23657dfaf323210e65a4d412f733af6de171da
1
// prettier.config.js, .prettierrc.js, prettier.config.cjs, or .prettierrc.cjs
2
3
/**
4
* @see https://prettier.io/docs/en/configuration.html
5
* @type {import("prettier").Config}
6
*/
7
const
config
= {
8
trailingComma
:
"none"
,
9
tabWidth
:
2
,
10
semi
:
true
,
11
singleQuote
:
false
,
12
endOfLine
:
"lf"
13
};
14
15
module
.
exports
=
config
;