Simplify .editorconfig & .prettierrc.json (#37400)

* Simplify .editorconfig & .prettierrc.json

* Update `"trailingComma"` to `"all"`. Remove md indent_size
This commit is contained in:
Dmitry Demensky 2019-08-07 01:35:47 +03:00 committed by Nathan Shively-Sanders
parent 3f6627ea70
commit 328cfb31e9
2 changed files with 2 additions and 18 deletions

View File

@ -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

View File

@ -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"
}