From a4c958c54fb1becf5878354988556673333b5a26 Mon Sep 17 00:00:00 2001 From: Antonis Kalipetis Date: Wed, 28 Dec 2016 18:48:24 +0200 Subject: [PATCH] Fix EOL character in .editorconfig and update docker-compose --- .editorconfig | 1 + docker-compose.yaml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index ae59e93..26230e9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,7 @@ indent_style = space indent_size = 2 insert_final_newline = true trim_trailing_whitespace = true +end_of_line = lf [*.{j,t}s] max_line_length = 100 diff --git a/docker-compose.yaml b/docker-compose.yaml index 22ea2e2..9579dcf 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,9 +1,9 @@ -version: '2' - -services: - web: - build: ./ - volumes: - - ./:/usr/src/app - ports: - - 3000:3000 +version: '2' + +services: + web: + build: ./ + volumes: + - ./:/usr/src/app + ports: + - 3000:3000 -- 2.39.5