11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
|
module.exports = {
|
||
|
semi: true,
|
||
|
trailingComma: 'all',
|
||
|
arrowParens: 'always',
|
||
|
singleQuote: true,
|
||
|
jsxSingleQuote: true,
|
||
|
printWidth: 120,
|
||
|
useTabs: true,
|
||
|
tabWidth: 8,
|
||
|
};
|