12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
jsxSingleQuote: false,
|
|
quoteProps: 'as-needed',
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
printWidth: 120,
|
|
trailingComma: 'all',
|
|
}
|