12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 120,
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
singleQuote: true,
|
||
|
semi: false,
|
||
|
trailingComma: "none",
|
||
|
bracketSpacing: true,
|
||
|
jsxSingleQuote: true,
|
||
|
jsxBracketSameLine: false,
|
||
|
arrowParens: "avoid"
|
||
|
}
|