mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
14 lines
521 B
JavaScript
14 lines
521 B
JavaScript
module.exports = {
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: false,
|
|
quoteProps: "as-needed",
|
|
jsxSingleQuote: false,
|
|
trailingComma: "none",
|
|
bracketSpacing: false,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: "always",
|
|
endOfLine: "auto" // Apparently, the GitHub repository still uses CRLF. I don't know how to force it to use LF, and until someone figures that out, I'm changing this to auto because I don't want more than one line ending commit.
|
|
};
|