blob: 36c85bc90154b72eaf414a7c7c573239f0b390c3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
module.exports = {
trailingComma: "es5",
tabWidth: 2,
useTabs: false,
singleQuote: false,
printWidth: 120,
bracketSpacing: true,
arrowParens: "avoid",
endOfLine: "auto",
};
|