15 lines
280 B
JavaScript
15 lines
280 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 180,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
bracketSpacing: true,
|
||
|
jsxBracketSameLine: false,
|
||
|
jsxSingleQuote: true,
|
||
|
quoteProps: 'as-needed',
|
||
|
arrowParens: 'avoid',
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
endOfLine: 'lf',
|
||
|
};
|