Skip to content

Commit ecf8213

Browse files
committed
Update README.md to improve installation instructions for t-linter using pip and uv
1 parent 0b55d15 commit ecf8213

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,12 @@ pip install t-linter
3434

3535
For 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
3838
echo "t-linter" >> requirements.txt
3939
pip 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

9093
Or add to your project's dependencies:
9194
```bash
92-
# requirements.txt
95+
# Using requirements.txt
9396
t-linter
9497

95-
# or in pyproject.toml
98+
# Using uv
99+
uv add t-linter
100+
101+
# Or manually in pyproject.toml
96102
[project]
97103
dependencies = [
98104
"t-linter",

editors/vscode/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ pip install t-linter
3737

3838
For better project isolation, add it to your project's requirements:
3939
```bash
40-
# Add to requirements.txt
40+
# Using pip with requirements.txt
4141
echo "t-linter" >> requirements.txt
4242
pip 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]
4649
dependencies = [
4750
"t-linter",

0 commit comments

Comments
 (0)