From 97f48122cc887ea3bd740616aea9eac93b70021d Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Thu, 28 Aug 2025 20:59:57 +0200 Subject: [PATCH] installed prettier and added ignores for npm packages --- .gitignore | 9 +++++++++ package.json | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 36b13f1..b2df4aa 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,15 @@ __pycache__/ # C extensions *.so +# Node.js/npm +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.npm +.yarn-integrity +package-lock.json + # Distribution / packaging .Python build/ diff --git a/package.json b/package.json new file mode 100644 index 0000000..43926eb --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "prettier": "3.6.2" + } +}