File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,12 @@ pip install t-linter
3434
3535For better project isolation, add it to your project's requirements:
3636``` bash
37- # Add to requirements.txt or pyproject.toml
37+ # Using pip with requirements.txt
3838echo " t-linter" >> requirements.txt
3939pip install -r requirements.txt
40+
41+ # Or using uv (recommended for faster installs)
42+ uv add t-linter
4043```
4144
4245** Step 2: Install the VSCode extension**
@@ -89,10 +92,13 @@ pip install t-linter
8992
9093Or add to your project's dependencies:
9194``` bash
92- # requirements.txt
95+ # Using requirements.txt
9396t-linter
9497
95- # or in pyproject.toml
98+ # Using uv
99+ uv add t-linter
100+
101+ # Or manually in pyproject.toml
96102[project]
97103dependencies = [
98104 " t-linter" ,
Original file line number Diff line number Diff line change @@ -37,11 +37,14 @@ pip install t-linter
3737
3838For better project isolation, add it to your project's requirements:
3939``` bash
40- # Add to requirements.txt
40+ # Using pip with requirements.txt
4141echo " t-linter" >> requirements.txt
4242pip install -r requirements.txt
4343
44- # Or add to pyproject.toml
44+ # Or using uv (recommended for faster installs)
45+ uv add t-linter
46+
47+ # Or manually add to pyproject.toml
4548[project]
4649dependencies = [
4750 " t-linter" ,
You can’t perform that action at this time.
0 commit comments