From adda08c983f662f387076557c093c06045ce06b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Erik=20St=C3=B8wer?= <testower@gmail.com> Date: Wed, 19 Oct 2022 22:48:54 +0200 Subject: [PATCH] Remove diff-styling The `+ ` in front of each line in the examples make them cumbersome to copy, and they don't provide much value. --- docusaurus/docs/setting-up-your-editor.md | 24 ++++++++++------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/docusaurus/docs/setting-up-your-editor.md b/docusaurus/docs/setting-up-your-editor.md index 396dc3f9e..b1281b7ee 100644 --- a/docusaurus/docs/setting-up-your-editor.md +++ b/docusaurus/docs/setting-up-your-editor.md @@ -134,25 +134,21 @@ Now we can make sure every file is formatted correctly by adding a few lines to Add the following field to the `package.json` section: ```diff -+ "husky": { -+ "hooks": { -+ "pre-commit": "lint-staged" -+ } -+ } + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + } ``` Next we add a 'lint-staged' field to the `package.json`, for example: ```diff - "dependencies": { - // ... - }, -+ "lint-staged": { -+ "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ -+ "prettier --write" -+ ] -+ }, - "scripts": { + "lint-staged": { + "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ + "prettier --write" + ] + }, ``` Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --write "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}"` to format your entire project for the first time. -- GitLab