From d36ec3a2085ed0b99b910c2536e5f9adc65e30c3 Mon Sep 17 00:00:00 2001 From: "Brady J. Garvin" <bgarvin@cse.unl.edu> Date: Thu, 5 Oct 2023 10:28:03 -0500 Subject: [PATCH] Update VSCode `files.eol` setting to modern format and include ESLint configuration name to avoid package-lock.json from being marked as changed. --- divide-and-conquer-in-class.code-workspace | 2 +- divide-and-conquer/package-lock.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/divide-and-conquer-in-class.code-workspace b/divide-and-conquer-in-class.code-workspace index 25b5c80..3ecdc26 100644 --- a/divide-and-conquer-in-class.code-workspace +++ b/divide-and-conquer-in-class.code-workspace @@ -5,7 +5,7 @@ } ], "settings": { - "files.eol": "LF", + "files.eol": "\n", "files.exclude": { "**/node_modules": true }, diff --git a/divide-and-conquer/package-lock.json b/divide-and-conquer/package-lock.json index f442580..b8eb5a7 100644 --- a/divide-and-conquer/package-lock.json +++ b/divide-and-conquer/package-lock.json @@ -41,6 +41,7 @@ } }, "../eslint-config": { + "name": "@unlsoft/eslint-config", "version": "3.0.0", "dev": true, "license": "UNLICENSED", -- GitLab