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