diff --git a/.editorconfig b/.editorconfig index b0a8221..949fbcb 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,5 +2,5 @@ end_of_line = lf [*.{js,mjs,ts}] -indent_size = 2 +indent_size = 4 trim_trailing_whitespace = true diff --git a/prettier.config.mjs b/prettier.config.mjs index 1ea8990..a588ebd 100644 --- a/prettier.config.mjs +++ b/prettier.config.mjs @@ -2,12 +2,12 @@ * @type {import("prettier").Config} */ export default { - semi: true, - tabWidth: 2, - useTabs: false, - printWidth: 80, - singleQuote: false, - arrowParens: "always", - trailingComma: "es5", - singleAttributePerLine: true, + semi: true, + tabWidth: 4, + useTabs: false, + printWidth: 80, + singleQuote: false, + arrowParens: "always", + trailingComma: "es5", + singleAttributePerLine: true, };