11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
jsxSingleQuote: false,
|
|
semi: false,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
printWidth: 120,
|
|
endOfLine: 'lf',
|
|
arrowParens: 'always',
|
|
}
|