9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 150,
|
||
|
tabWidth: 2,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
arrowParens: 'always',
|
||
|
};
|