11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
|
module.exports = {
|
||
|
endOfLine: 'lf',
|
||
|
printWidth: 80,
|
||
|
proseWrap: 'always',
|
||
|
quoteProps: 'as-needed',
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'all',
|
||
|
useTabs: false,
|
||
|
}
|