From 8546794b47cbe780b1d78ddc226d10aaa5558397 Mon Sep 17 00:00:00 2001 From: Michael Frank Date: Tue, 11 May 2021 14:34:12 +1200 Subject: [PATCH] Remove lint script and add .DS_Store to .gitignore --- .gitignore | 3 ++- package.json | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7c78742..ab44f60 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode -node_modules +node_modules/ +.DS_Store diff --git a/package.json b/package.json index d9b0166..485274c 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "eslint-plugin-import": "^2.22.1" }, "scripts": { - "test": "jest", - "lint" : "./node_modules/.bin/eslint" + "test": "jest" } }