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
-[SMS and Contacts](examples/illustrations/sms_and_contacts/sms_and_contacts.json)
28
+
29
+
30
+
This project uses [the `pre-commit` tool](https://pre-commit.com/) for linting the JSON files and ensuring consistent formatting. It can be installed with `pip`:
31
+
```bash
32
+
pip install pre-commit
33
+
pre-commit --version
34
+
```
35
+
36
+
The `pre-commit` tool hooks into Git's commit machinery to run a set of linters and static analyzers over each change. To install `pre-commit` into Git's hooks, run:
37
+
```bash
38
+
pre-commit install
39
+
```
40
+
41
+
To uninstall `pre-commit`, run either `pre-commit uninstall` or `rm .git/hooks/pre-commit`.
0 commit comments