@@ -40,7 +40,23 @@ pip install t-linter
40403 . Search for "t-linter"
41414 . Click Install on "T-Linter - Python Template Strings Highlighter & Linter" by koxudaxi
4242
43- ### Step 3: Configure server path (if needed)
43+ ### Step 3: Disable Python Language Server
44+ To prevent conflicts with t-linter's syntax highlighting, you need to disable the Python language server:
45+
46+ 1 . Open VSCode Settings (Ctrl+, / Cmd+,)
47+ 2 . Search for "python.languageServer"
48+ 3 . Set it to "None"
49+
50+ Alternatively, add to your settings.json:
51+ ``` json
52+ {
53+ "python.languageServer" : " None"
54+ }
55+ ```
56+
57+ [ Learn more about Python language server settings] ( https://code.visualstudio.com/docs/python/settings-reference#_intellisense-engine-settings )
58+
59+ ### Step 4: Configure server path (if needed)
4460If the extension can't find the t-linter binary automatically:
4561
46621 . ** Find your t-linter path** :
@@ -158,10 +174,11 @@ If you see "t-linter binary not found":
158174
159175### No syntax highlighting
1601761 . Ensure both the PyPI package AND VSCode extension are installed
161- 2 . Check that Python semantic highlighting is enabled in VSCode
162- 3 . Verify your template strings use the ` t"..." ` syntax
163- 4 . Ensure type annotations are correctly formatted
164- 5 . Try restarting the language server: ` Ctrl+Shift+P ` → "T-Linter: Restart Server"
177+ 2 . ** Verify that Python language server is disabled** : ` python.languageServer ` should be set to "None"
178+ 3 . Check that Python semantic highlighting is enabled in VSCode
179+ 4 . Verify your template strings use the ` t"..." ` syntax
180+ 5 . Ensure type annotations are correctly formatted
181+ 6 . Try restarting the language server: ` Ctrl+Shift+P ` → "T-Linter: Restart Server"
165182
166183### Performance issues
167184- Disable ` t-linter.enableTypeChecking ` if you don't need cross-module type resolution
0 commit comments