mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
87920505db
a.k.a. "Install Prettier"
14 lines
310 B
JavaScript
14 lines
310 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"
|
|
};
|