11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
|
module.exports = {
|
||
|
bracketSpacing: true,
|
||
|
jsxBracketSameLine: true,
|
||
|
singleQuote: false,
|
||
|
jsxSingleQuote: false,
|
||
|
trailingComma: "es5",
|
||
|
semi: true,
|
||
|
printWidth: 110,
|
||
|
arrowParens: "always",
|
||
|
};
|