7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: 'avoid',
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
tabWidth: 4,
|
||
|
endOfLine: 'auto',
|
||
|
};
|