remove editorconfig, define all styling in prettierrc

This commit is contained in:
Matthias Kretschmann 2019-12-18 10:29:15 +01:00
parent 70a3339f8b
commit f8dfaa438c
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 12 additions and 16 deletions

View File

@ -1,12 +0,0 @@
root = true
[*]
charset = utf-8
indent_size = 4
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{json,yml,yaml,md}]
indent_size = 2

View File

@ -1,5 +1,15 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
"trailingComma": "none",
"tabWidth": 4,
"endOfLine": "lf",
"overrides": [
{
"files": ["*.{json,yml,yaml,md}"],
"options": {
"tabWidth": 2
}
}
]
}

View File

@ -1,7 +1,6 @@
version: '3.4'
services:
client:
build:
context: ./client
@ -21,4 +20,3 @@ services:
dockerfile: ./Dockerfile
ports:
- 4000:4000