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