We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0291eba commit 269c004Copy full SHA for 269c004
1 file changed
README.md
@@ -7,12 +7,38 @@ recon tools used at LeakIX.
7
This library is equivalent to [l9format](https://github.com/leakix/l9format)
8
which provides a Go implementation.
9
10
-## Run the tests
+## Tools and Usage
11
12
+### Running Tests
13
14
+We use `pytest` for testing. Run the tests with:
15
+
16
+```bash
17
+poetry run pytest
18
+```
19
20
+### Code Formatting
21
22
+We use `black` for code formatting. To format the code, run:
23
24
25
+poetry run black .
26
27
28
+### Import Sorting
29
30
+We use `isort` to sort imports. To sort imports, run:
31
32
33
+poetry run isort .
34
```
-poetry install
-poetry run pytest l9format/tests/test_l9format.py
35
36
+### Code Linting
37
38
+We use `ruff` for linting. Run:
39
40
41
+poetry run ruff check .
42
43
44
## Install
0 commit comments