diff --git a/.editorconfig b/.editorconfig index 6adb354..372c0c6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,7 +5,6 @@ root = true [*] charset = utf-8 -indent_size = 2 -indent_style = space +indent_style = tab end_of_line = lf insert_final_newline = true diff --git a/.prettierrc.json b/.prettierrc.json index 7ec7f23..bd0df5c 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,15 +1,18 @@ { - "endOfLine": "lf", - "semi": true, - "singleQuote": true, - "tabWidth": 2, - "trailingComma": "es5", - "overrides": [ - { - "files": "*.md", - "options": { - "singleQuote": false - } - } - ] + "endOfLine": "lf", + "semi": true, + "singleQuote": true, + "useTabs": true, + "tabWidth": 4, + "printWidth": 100, + "trailingComma": "es5", + "overrides": [ + { + "files": "*.md", + "options": { + "singleQuote": false, + "tabWidth": 2 + } + } + ] }