9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
module.exports = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
printWidth: 100,
|
|
trailingComma: 'none',
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'auto'
|
|
}
|