11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 120,
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
semi: true,
|
||
|
singleQuote: false,
|
||
|
quoteProps: "as-needed",
|
||
|
trailingComma: "es5",
|
||
|
bracketSpacing: false,
|
||
|
arrowParens: "always",
|
||
|
};
|