8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
|
|
module.exports = {
|
||
|
|
trailingComma: 'es5',
|
||
|
|
singleQuote: true,
|
||
|
|
semi: false,
|
||
|
|
arrowParens: 'avoid',
|
||
|
|
printWidth: 120,
|
||
|
|
}
|