UNPKG
@marviuz/prettier-config
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Streamlined Prettier setup with package.json formatting.
style-guide.marviuz.me
Marviuz/style-guide
@marviuz/prettier-config
/
index.mjs
12 lines
(10 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/**
@type
{
import("prettier").Config
} */
const
config = {
endOfLine
:
'lf'
,
tabWidth
:
2
,
printWidth
:
80
,
useTabs
:
false
,
singleQuote
:
true
,
plugins
: [
import
.
meta
.
resolve
(
'prettier-plugin-packagejson'
)], };
export
default
config;