Skip to content

Commit 4f52d86

Browse files
estebanx64tiangolo
andauthored
📝 Add documentation for pre-commit and code linting (fastapi#718)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
1 parent b6f37e4 commit 4f52d86

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

development.md

+47
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ In that case, you will need to use a fake local domain (`dev.example.com`) and m
2323
If you have a custom domain like that, you need to add it to the list in the variable `BACKEND_CORS_ORIGINS` in the `.env` file.
2424

2525
* Open your `hosts` file with administrative privileges using a text editor:
26+
2627
* **Note for Windows**: If you are in Windows, open the main Windows menu, search for "notepad", right click on it, and select the option "open as Administrator" or similar. Then click the "File" menu, "Open file", go to the directory `c:\Windows\System32\Drivers\etc\`, select the option to show "All files" instead of only "Text (.txt) files", and open the `hosts` file.
2728
* **Note for Mac and Linux**: Your `hosts` file is probably located at `/etc/hosts`, you can edit it in a terminal running `sudo nano /etc/hosts`.
2829

@@ -91,6 +92,52 @@ Depending on your workflow, you could want to exclude it from Git, for example i
9192

9293
One way to do it could be to add each environment variable to your CI/CD system, and updating the `docker-compose.yml` file to read that specific env var instead of reading the `.env` file.
9394

95+
### Pre-commits and code linting
96+
97+
we are using a tool called [pre-commit](https://pre-commit.com/) for code linting and formatting.
98+
99+
When you install it, it runs right before making a commit in git. This way it ensures that the code is consistent and formatted even before it is committed.
100+
101+
You can find a file `.pre-commit-config.yaml` with configurations at the root of the project.
102+
103+
#### Install pre-commit to run automatically
104+
105+
`pre-commit` is already part of the dependencies of the project, but you could also install it globally if you prefer to, following [the official pre-commit docs](https://pre-commit.com/).
106+
107+
After having the `pre-commit` tool installed and available, you need to "install" it in the local repository, so that it runs automatically before each commit.
108+
109+
Using Poetry, you could do it with:
110+
111+
```bash
112+
❯ poetry run pre-commit install
113+
pre-commit installed at .git/hooks/pre-commit
114+
```
115+
116+
Now whenever you try to commit, e.g. with:
117+
118+
```bash
119+
git commit
120+
```
121+
122+
...pre-commit will run and check and format the code you are about to commit, and will ask you to add that code (stage it) with git again before committing.
123+
124+
Then you can `git add` the modified/fixed files again and now you can commit.
125+
126+
#### Running pre-commit hooks manually
127+
128+
you can also run `pre-commit` manually on all the files, you can do it using Poetry with:
129+
130+
```bash
131+
❯ poetry run pre-commit run --all-files
132+
check for added large files..............................................Passed
133+
check toml...............................................................Passed
134+
check yaml...............................................................Passed
135+
ruff.....................................................................Passed
136+
ruff-format..............................................................Passed
137+
eslint...................................................................Passed
138+
prettier.................................................................Passed
139+
```
140+
94141
## URLs
95142

96143
The production or staging URLs would use these same paths, but with your own domain.

0 commit comments

Comments
 (0)