From 69eeb8c5866d2e3bcae95521eb4993c29e23b34d Mon Sep 17 00:00:00 2001 From: Abhinav Jha Date: Mon, 9 Sep 2019 16:02:04 +0530 Subject: [PATCH] WIP: Remove extra lint-staged config --- app/client/lint-staged.config.js | 9 --------- app/client/package.json | 1 - 2 files changed, 10 deletions(-) delete mode 100644 app/client/lint-staged.config.js diff --git a/app/client/lint-staged.config.js b/app/client/lint-staged.config.js deleted file mode 100644 index 1cc9843224..0000000000 --- a/app/client/lint-staged.config.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = { - linters: { - '**/*.+(ts|tsx)': [ - 'eslint --fix', - 'prettier --write', - 'git add', - ], - }, -}; diff --git a/app/client/package.json b/app/client/package.json index a069ed29b3..cfcda6c04d 100644 --- a/app/client/package.json +++ b/app/client/package.json @@ -56,7 +56,6 @@ "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", - "lint": "eslint src/**/*.tsx", "precommit": "lint-staged", "flow": "flow" },