9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSameLine: true,
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
semi: false,
|
|
}
|