10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
module.exports = {
|
||
|
tabWidth: 4,
|
||
|
semi: false,
|
||
|
singleQuote: true,
|
||
|
printWidth: 120,
|
||
|
trailingComma: 'all',
|
||
|
quoteProps: 'as-needed',
|
||
|
proseWrap: 'always',
|
||
|
}
|