From 2f900b62fe2529c8cb07da0cf64f2625994021f3 Mon Sep 17 00:00:00 2001 From: Clara Bennett Date: Sun, 20 Dec 2020 01:58:02 -0500 Subject: [PATCH] Remove outdated contributor tips (#5008) The `opt-cli` pre-push functionality was removed from lodash just a few days after it was added (see https://github.com/lodash/lodash/commit/2cd12c38e32c76aca6396df617d79ac752d81935), but the documentation encouraging contributors to use it still remains. Remove to avoid confusion for new contributors. --- .github/CONTRIBUTING.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 5e9b2b35f..414010a8f 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -71,14 +71,3 @@ Guidelines are enforced using [ESLint](https://www.npmjs.com/package/eslint): ```bash $ npm run style ``` - -## Tips - -You can opt-in to a pre-push git hook by adding an `.opt-in` file to the root of -the project containing: -```txt -pre-push -``` - -With that, when you `git push`, the pre-push git hook will trigger and execute -`npm run validate`.