8 lines
128 B
JavaScript
8 lines
128 B
JavaScript
|
module.exports = {
|
||
|
semi: false,
|
||
|
singleQuote: true,
|
||
|
arrowParens: "avoid",
|
||
|
trailingComma: "none",
|
||
|
endOfLine: "auto",
|
||
|
};
|