You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[chore] Removed $ from command for contribution guidance (#3114)
The copy in markdown file always copy the $ as well when copying the command,
I need to remove the $ manually each time.
Co-authored-by: Leighton Chen <[email protected]>
Co-authored-by: Riccardo Magliocchetti <[email protected]>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+28-14Lines changed: 28 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ some aspects of development, including testing against multiple Python versions.
56
56
To install `tox`, run:
57
57
58
58
```sh
59
-
$ pip install tox
59
+
pip install tox
60
60
```
61
61
62
62
You can run `tox` with the following arguments:
@@ -74,13 +74,13 @@ You can run `tox` with the following arguments:
74
74
`ruff check` and `ruff format` are executed when `tox -e ruff` is run. We strongly recommend you to configure [pre-commit](https://pre-commit.com/) locally to run `ruff` automatically before each commit by installing it as git hooks. You just need to [install pre-commit](https://pre-commit.com/#install) in your environment:
75
75
76
76
```console
77
-
$ pip install pre-commit -c dev-requirements.txt
77
+
pip install pre-commit -c dev-requirements.txt
78
78
```
79
79
80
80
and run this command inside the git repository:
81
81
82
82
```console
83
-
$ pre-commit install
83
+
pre-commit install
84
84
```
85
85
86
86
See
@@ -126,31 +126,45 @@ pull requests (PRs).
126
126
To create a new PR, fork the project in GitHub and clone the upstream repo:
0 commit comments