From 24135f15cb05af60ed37fd930ade1580420c26e5 Mon Sep 17 00:00:00 2001
From: "Brady J. Garvin" <bgarvin@cse.unl.edu>
Date: Tue, 3 Oct 2023 10:13:52 -0500
Subject: [PATCH] Update VSCode `files.eol` setting to modern format, include
 ESLint configuration name to avoid package-lock.json from being marked as
 changed, and remove letterboxing to better show images.

---
 greedy-algorithms-in-class.code-workspace | 2 +-
 greedy-algorithms/package-lock.json       | 1 +
 greedy-algorithms/src/index.css           | 1 -
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/greedy-algorithms-in-class.code-workspace b/greedy-algorithms-in-class.code-workspace
index 25b5c80..3ecdc26 100644
--- a/greedy-algorithms-in-class.code-workspace
+++ b/greedy-algorithms-in-class.code-workspace
@@ -5,7 +5,7 @@
 		}
 	],
 	"settings": {
-		"files.eol": "LF",
+		"files.eol": "\n",
 		"files.exclude": {
 			"**/node_modules": true
 		},
diff --git a/greedy-algorithms/package-lock.json b/greedy-algorithms/package-lock.json
index ad18191..86a033e 100644
--- a/greedy-algorithms/package-lock.json
+++ b/greedy-algorithms/package-lock.json
@@ -41,6 +41,7 @@
       }
     },
     "../eslint-config": {
+      "name": "@unlsoft/eslint-config",
       "version": "3.0.0",
       "dev": true,
       "license": "UNLICENSED",
diff --git a/greedy-algorithms/src/index.css b/greedy-algorithms/src/index.css
index c271239..b5859fb 100644
--- a/greedy-algorithms/src/index.css
+++ b/greedy-algorithms/src/index.css
@@ -33,7 +33,6 @@ body {
   min-height: var(--minimum-app-size);
   width: 100%;
   height: 100%;
-  max-width: 62.5vh;
   background: var(--app-background-color);
   overflow-x: hidden;
   overflow-y: scroll;
-- 
GitLab