From 477ed868641f9fe8b42a807cb8d7146a7c3f4e5b Mon Sep 17 00:00:00 2001 From: harshnilve28 Date: Tue, 29 Jul 2025 18:22:34 +0530 Subject: [PATCH 1/2] docs: remove $ from shell commands for easy copy-paste --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2d8f4af1b..86bb97705 100644 --- a/README.md +++ b/README.md @@ -84,11 +84,11 @@ and then editing the results to include your name, email, and various configurat First, get Cookiecutter. Trust me, it's awesome: - $ pip install "cookiecutter>=1.7.0" + pip install "cookiecutter>=1.7.0" Now run it against this repo: - $ cookiecutter https://github.com/cookiecutter/cookiecutter-django + cookiecutter https://github.com/cookiecutter/cookiecutter-django You'll be prompted for some values. Provide them, then a Django project will be created for you. @@ -175,16 +175,16 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re Enter the project and take a look around: - $ cd reddit/ - $ ls + cd reddit/ + ls Create a git repo and push it there: - $ git init - $ git add . - $ git commit -m "first awesome commit" - $ git remote add origin git@github.com:pydanny/redditclone.git - $ git push -u origin master + git init + git add . + git commit -m "first awesome commit" + git remote add origin git@github.com:pydanny/redditclone.git + git push -u origin master Now take a look at your repo. Don't forget to carefully look at the generated README. Awesome, right? From e9337a5a469e2d6e3da1ef80b758e0332210ff05 Mon Sep 17 00:00:00 2001 From: harshnilve28 Date: Wed, 30 Jul 2025 12:59:03 +0530 Subject: [PATCH 2/2] Add .prettierrc to enforce single quotes with Prettier --- .prettierrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..544138be4 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "singleQuote": true +}