8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
|
module.exports = {
|
||
|
bracketSpacing: true,
|
||
|
jsxBracketSameLine: true,
|
||
|
singleQuote: false,
|
||
|
arrowParens: "avoid",
|
||
|
trailingComma: "none"
|
||
|
};
|