14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
module.exports = {
|
|
tabWidth: 4,
|
|
printWidth: 120,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'all',
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'auto',
|
|
}
|