UNPKG
make-pesto
Version:
latest (0.1.1)
0.1.1
0.1.0
Pesto is a command-line tool to assist in creating Node.js packages. 🔪🌿
make-pesto
/
src
/
constants
/
prettier-options.ts
12 lines
(10 loc)
•
221 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
prettierOptions
=
{
printWidth:
100
,
tabWidth:
4
,
singleQuote:
false
,
semi:
true
,
trailingComma:
"none"
,
bracketSpacing:
true
,
bracketSameLine:
false
, }
;
export
default
prettierOptions;