TravBot-v3/prettier.config.js

15 lines
521 B
JavaScript
Raw Normal View History

2020-10-15 09:23:24 +00:00
module.exports = {
2020-12-15 07:56:09 +00:00
printWidth: 120,
2020-12-15 01:44:28 +00:00
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.
2020-10-15 09:23:24 +00:00
};