From aa7fa009e83dc3e825387b39a3a3691e7a6dae91 Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Mon, 3 Feb 2020 13:15:59 +0100 Subject: [PATCH] CHANGE lint-staged config after upgrading --- lib/cli/test/fixtures/react_scripts/README.md | 5 +-- package.json | 40 ++++--------------- 2 files changed, 9 insertions(+), 36 deletions(-) diff --git a/lib/cli/test/fixtures/react_scripts/README.md b/lib/cli/test/fixtures/react_scripts/README.md index 933fd2faea9..17abff87570 100644 --- a/lib/cli/test/fixtures/react_scripts/README.md +++ b/lib/cli/test/fixtures/react_scripts/README.md @@ -333,10 +333,7 @@ Next we add a 'lint-staged' field to the `package.json`, for example: // ... }, + "lint-staged": { -+ "src/**/*.{js,jsx,json,css}": [ -+ "prettier --single-quote --write", -+ "git add" -+ ] ++ "src/**/*.{js,jsx,json,css}": [ "prettier --single-quote --write" ] + }, "scripts": { ``` diff --git a/package.json b/package.json index a0d8749578a..636afa2dcfa 100644 --- a/package.json +++ b/package.json @@ -81,38 +81,14 @@ } }, "lint-staged": { - "*.html": [ - "yarn lint:js --fix", - "git add" - ], - "*.js": [ - "yarn lint:js --fix", - "git add" - ], - "*.json": [ - "yarn lint:js --fix", - "git add" - ], - "*.jsx": [ - "yarn lint:js --fix", - "git add" - ], - "*.mjs": [ - "yarn lint:js --fix", - "git add" - ], - "*.ts": [ - "yarn lint:js --fix", - "git add" - ], - "*.tsx": [ - "yarn lint:js --fix", - "git add" - ], - "package.json": [ - "yarn lint:package", - "git add" - ] + "*.html": [ "yarn lint:js --fix" ], + "*.js": [ "yarn lint:js --fix" ], + "*.json": [ "yarn lint:js --fix" ], + "*.jsx": [ "yarn lint:js --fix" ], + "*.mjs": [ "yarn lint:js --fix" ], + "*.ts": [ "yarn lint:js --fix" ], + "*.tsx": [ "yarn lint:js --fix" ], + "package.json": [ "yarn lint:package" ] }, "browserslist": "defaults", "devDependencies": {