15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: true,
|
|
endOfLine: 'auto',
|
|
jsxBracketSameLine: true,
|
|
jsxSingleQuote: true,
|
|
printWidth: 100,
|
|
quoteProps: 'consistent',
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
useTabs: false,
|
|
};
|