From c3bc09f3d29e905e68da9cb494c5a58d5f223488 Mon Sep 17 00:00:00 2001 From: Piyush kumar Date: Fri, 17 Dec 2021 09:21:23 +0530 Subject: [PATCH] docs(jshint): fix sed typo in README.md --- jshint/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jshint/README.md b/jshint/README.md index 7b43ed0..cd96fdb 100644 --- a/jshint/README.md +++ b/jshint/README.md @@ -61,9 +61,9 @@ this command: ```bash # convert from JSON5 (with comments) to JSON and copy into current directory -sed -e ~/.jshintrc.webi.json5 \ - 's://.*::g' \ - > .jshintrc +sed -e 's://.*::g' \ + ~/.jshintrc.webi.json5 \ + > .jshintrc ``` The `.jshintrc` will be read by code tools such as _[`vim-ale`][vim-ale]_ and @@ -87,7 +87,7 @@ Engineering_ (as opposed to just _Code Monkey_-ing around): // Recommended config from https://webinstall.dev/jshint // // To copy this file into your project without comments, run this: -// sed -e ~/.jshintrc.webi.json5 's://.*::g' > .jshintrc +// sed -e 's://.*::g' ~/.jshintrc.webi.json5 > .jshintrc { browser: true,