diff --git a/.editorconfig b/.editorconfig index 1e8c6902048be4..af25aa8534238c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,7 +4,5 @@ root = true indent_size = 4 trim_trailing_whitespace = true insert_final_newline = true - -[{*.json,*.yml,*.ts,*.tsx,*.md}] +max_line_length = 120 indent_style = space - diff --git a/.prettierrc.json b/.prettierrc.json index 23f3bfdbc0dc4d..30f991427a604e 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,20 +1,6 @@ { "$schema": "http://json.schemastore.org/prettierrc", - - "parser": "typescript", - "printWidth": 120, - "semi": true, "singleQuote": true, - "tabWidth": 4, - "trailingComma": "es5", - - "overrides": [ - { - "files": ["*.md"], - "options": { - "tabWidth": 2 - } - } - ] + "trailingComma": "all" }