12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
|
|
module.exports = {
|
||
|
|
bracketSpacing: true,
|
||
|
|
bracketSameLine: true,
|
||
|
|
singleQuote: true,
|
||
|
|
jsxSingleQuote: true,
|
||
|
|
trailingComma: "es5",
|
||
|
|
semi: true,
|
||
|
|
printWidth: 110,
|
||
|
|
arrowParens: "always",
|
||
|
|
importOrderSeparation: true,
|
||
|
|
};
|