-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
876 lines (876 loc) · 28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
{
"name": "@yaegassy/coc-pylsp",
"version": "0.11.0",
"description": "pylsp (python-lsp-server) extension for coc.nvim",
"author": "yaegassy <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"python",
"pylsp",
"vim",
"neovim"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/yaegassy/coc-pylsp"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"devDependencies": {
"@types/node": "^18.18.3",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"coc.nvim": "^0.0.82",
"esbuild": "^0.16.17",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"which": "^2.0.2"
},
"activationEvents": [
"onLanguage:python"
],
"contributes": {
"rootPatterns": [
{
"filetype": "python",
"patterns": [
"setup.py",
"setup.cfg",
"Pipfile",
"pyproject.toml"
]
}
],
"configuration": {
"type": "object",
"title": "coc-pylsp configuration",
"properties": {
"pylsp.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-pylsp extension."
},
"pylsp.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between coc.nvim and the Python LSP Server."
},
"pylsp.commandPath": {
"type": "string",
"default": "",
"description": "Custom path to the pylsp command. ~ and $HOME, etc. can also be used. If not set, pylsp detected by the current python environment or extension venv's pylsp used will be used"
},
"pylsp.connectionMode": {
"scope": "resource",
"type": "string",
"default": "stdio",
"markdownDescription": "Controls the communication method to pylsp.",
"enum": [
"stdio",
"tcp"
],
"enumDescriptions": [
"Use stdio to communicate with pylsp.",
"Use tcp to connect pylsp. You need to launch pylsp."
]
},
"pylsp.tcpHost": {
"scope": "resource",
"type": "string",
"default": "127.0.0.1",
"description": "Specifies the host name to connect pylsp. This setting only works with connectionMode is 'tcp'."
},
"pylsp.tcpPort": {
"scope": "resource",
"type": "number",
"default": "2087",
"markdownDescription": "Specifies the port to connect pylsp. This setting only works with connectionMode is 'tcp'."
},
"pylsp.disableProgressNotifications": {
"type": "boolean",
"default": true,
"description": "Disable the initialization and workdone progress notifications"
},
"pylsp.builtin.pythonPath": {
"type": "string",
"default": "",
"description": "Python 3.x path (Absolute path) to be used for built-in install"
},
"pylsp.builtin.installExtrasArgs": {
"type": "array",
"default": [
"all"
],
"description": "Setting extras_require for built-in installation"
},
"pylsp.builtin.enableInstallPylspMypy": {
"type": "boolean",
"default": false,
"description": "Enable/Disable built-in install of pylsp-mypy"
},
"pylsp.builtin.enableInstallPylsIsort": {
"type": "boolean",
"default": false,
"description": "Enable/Disable built-in install of pyls-isort"
},
"pylsp.builtin.enableInstallPythonLspBlack": {
"type": "boolean",
"default": false,
"description": "Enable/Disable built-in install of python-lsp-black"
},
"pylsp.builtin.enableInstallPylspRope": {
"type": "boolean",
"default": false,
"description": "Enable/Disable built-in install of pylsp-rope"
},
"pylsp.builtin.enableInstallPythonLspRuff": {
"type": "boolean",
"default": false,
"description": "Enable/Disable built-in install of pylsp-lsp-ruff"
},
"pylsp.builtin.pylspMypyVersion": {
"type": "string",
"default": "",
"description": "Version of pylsp-mypy for built-in install"
},
"pylsp.builtin.pylsIsortVersion": {
"type": "string",
"default": "",
"description": "Version of pyls-isort for built-in install"
},
"pylsp.builtin.pythonLspBlackVersion": {
"type": "string",
"default": "",
"description": "Version of python-lsp-black for built-in install"
},
"pylsp.builtin.pylspRopeVersion": {
"type": "string",
"default": "",
"description": "Version of pylsp-rope for built-in install"
},
"pylsp.builtin.pythonLspRuffVersion": {
"type": "string",
"default": "",
"description": "Version of python-lsp-ruff for built-in install"
},
"pylsp.configurationSources": {
"type": "array",
"default": [
"pycodestyle"
],
"description": "List of configuration sources to use.",
"items": {
"type": "string",
"enum": [
"pycodestyle",
"flake8"
]
},
"uniqueItems": true
},
"pylsp.plugins.autopep8.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin (disabling required to use `yapf`)."
},
"pylsp.plugins.flake8.config": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to the config file that will be the authoritative config source."
},
"pylsp.plugins.flake8.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.flake8.exclude": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of files or directories to exclude."
},
"pylsp.plugins.flake8.extendIgnore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of errors and warnings to append to ignore list."
},
"pylsp.plugins.flake8.extendSelect": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of errors and warnings to append to select list."
},
"pylsp.plugins.flake8.executable": {
"type": "string",
"default": "flake8",
"description": "Path to the flake8 executable."
},
"pylsp.plugins.flake8.filename": {
"type": [
"string",
"null"
],
"default": null,
"description": "Only check for filenames matching the patterns in this list."
},
"pylsp.plugins.flake8.hangClosing": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Hang closing bracket instead of matching indentation of opening bracket's line."
},
"pylsp.plugins.flake8.ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of errors and warnings to ignore (or skip)."
},
"pylsp.plugins.flake8.maxComplexity": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Maximum allowed complexity threshold."
},
"pylsp.plugins.flake8.maxLineLength": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Maximum allowed line length for the entirety of this run."
},
"pylsp.plugins.flake8.indentSize": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Set indentation spaces."
},
"pylsp.plugins.flake8.perFileIgnores": {
"type": [
"array"
],
"default": [],
"items": {
"type": "string"
},
"description": "A pairing of filenames and violation codes that defines which violations to ignore in a particular file, for example: `[\"file_path.py:W305,W304\"]`)."
},
"pylsp.plugins.flake8.select": {
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "List of errors and warnings to enable."
},
"pylsp.plugins.jedi.auto_import_modules": {
"type": "array",
"default": [
"numpy"
],
"items": {
"type": "string"
},
"description": "List of module names for jedi.settings.auto_import_modules."
},
"pylsp.plugins.jedi.extra_paths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Define extra paths for jedi.Script."
},
"pylsp.plugins.jedi.prioritize_extra_paths": {
"type": "boolean",
"default": false,
"description": "Whether to place extra_paths at the beginning (true) or end (false) of `sys.path`"
},
"pylsp.plugins.jedi.env_vars": {
"type": [
"object",
"null"
],
"default": null,
"description": "Define environment variables for jedi.Script and Jedi.names."
},
"pylsp.plugins.jedi.environment": {
"type": [
"string",
"null"
],
"default": null,
"description": "Define environment for jedi.Script and Jedi.names."
},
"pylsp.plugins.jedi_completion.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_completion.include_params": {
"type": "boolean",
"default": true,
"description": "Auto-completes methods and classes with tabstops for each parameter."
},
"pylsp.plugins.jedi_completion.include_class_objects": {
"type": "boolean",
"default": false,
"description": "Adds class objects as a separate completion item."
},
"pylsp.plugins.jedi_completion.include_function_objects": {
"type": "boolean",
"default": false,
"description": "Adds function objects as a separate completion item."
},
"pylsp.plugins.jedi_completion.fuzzy": {
"type": "boolean",
"default": false,
"description": "Enable fuzzy when requesting autocomplete."
},
"pylsp.plugins.jedi_completion.eager": {
"type": "boolean",
"default": false,
"description": "Resolve documentation and detail eagerly."
},
"pylsp.plugins.jedi_completion.resolve_at_most": {
"type": "integer",
"default": 25,
"description": "How many labels and snippets (at most) should be resolved?"
},
"pylsp.plugins.jedi_completion.cache_for": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"pandas",
"numpy",
"tensorflow",
"matplotlib"
],
"description": "Modules for which labels and snippets should be cached."
},
"pylsp.plugins.jedi_definition.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_definition.follow_imports": {
"type": "boolean",
"default": true,
"description": "The goto call will follow imports."
},
"pylsp.plugins.jedi_definition.follow_builtin_imports": {
"type": "boolean",
"default": true,
"description": "If follow_imports is True will decide if it follow builtin imports."
},
"pylsp.plugins.jedi_definition.follow_builtin_definitions": {
"type": "boolean",
"default": true,
"description": "Follow builtin and extension definitions to stubs."
},
"pylsp.plugins.jedi_hover.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_references.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_signature_help.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_symbols.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.jedi_symbols.all_scopes": {
"type": "boolean",
"default": true,
"description": "If True lists the names of all scopes instead of only the module namespace."
},
"pylsp.plugins.jedi_symbols.include_import_symbols": {
"type": "boolean",
"default": true,
"description": "If True includes symbols imported from other libraries."
},
"pylsp.plugins.mccabe.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.mccabe.threshold": {
"type": "integer",
"default": 15,
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
},
"pylsp.plugins.preload.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.preload.modules": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "List of modules to import on startup"
},
"pylsp.plugins.pycodestyle.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.pycodestyle.exclude": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Exclude files or directories which match these patterns."
},
"pylsp.plugins.pycodestyle.filename": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "When parsing directories, only check filenames matching these patterns."
},
"pylsp.plugins.pycodestyle.select": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Select errors and warnings"
},
"pylsp.plugins.pycodestyle.ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Ignore errors and warnings"
},
"pylsp.plugins.pycodestyle.hangClosing": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Hang closing bracket instead of matching indentation of opening bracket's line."
},
"pylsp.plugins.pycodestyle.maxLineLength": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Set maximum allowed line length."
},
"pylsp.plugins.pycodestyle.indentSize": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Set indentation spaces."
},
"pylsp.plugins.pydocstyle.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.pydocstyle.convention": {
"type": [
"string",
"null"
],
"default": null,
"enum": [
"pep257",
"numpy",
"google",
null
],
"description": "Choose the basic list of checked errors by specifying an existing convention."
},
"pylsp.plugins.pydocstyle.addIgnore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Ignore errors and warnings in addition to the specified convention."
},
"pylsp.plugins.pydocstyle.addSelect": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Select errors and warnings in addition to the specified convention."
},
"pylsp.plugins.pydocstyle.ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Ignore errors and warnings"
},
"pylsp.plugins.pydocstyle.select": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Select errors and warnings"
},
"pylsp.plugins.pydocstyle.match": {
"type": "string",
"default": "(?!test_).*\\.py",
"description": "Check only files that exactly match the given regular expression; default is to match files that don't start with 'test_' but end with '.py'."
},
"pylsp.plugins.pydocstyle.matchDir": {
"type": "string",
"default": "[^\\.].*",
"description": "Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot."
},
"pylsp.plugins.pyflakes.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.pylint.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.pylint.args": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": false,
"description": "Arguments to pass to pylint."
},
"pylsp.plugins.pylint.executable": {
"type": [
"string",
"null"
],
"default": null,
"description": "Executable to run pylint with. Enabling this will run pylint on unsaved files via stdin. Can slow down workflow. Only works with python3."
},
"pylsp.plugins.rope_autoimport.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable autoimport. If false, neither completions nor code actions are enabled. If true, the respective features can be enabled or disabled individually."
},
"pylsp.plugins.rope_autoimport.completions.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable autoimport completions."
},
"pylsp.plugins.rope_autoimport.code_actions.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable autoimport code actions (e.g. for quick fixes)."
},
"pylsp.plugins.rope_autoimport.memory": {
"type": "boolean",
"default": false,
"description": "Make the autoimport database memory only. Drastically increases startup time."
},
"pylsp.plugins.rope_completion.enabled": {
"type": "boolean",
"default": false,
"description": "Enable or disable the plugin."
},
"pylsp.plugins.rope_completion.eager": {
"type": "boolean",
"default": false,
"description": "Resolve documentation and detail eagerly."
},
"pylsp.plugins.yapf.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the plugin."
},
"pylsp.rope.extensionModules": {
"type": [
"string",
null
],
"default": null,
"description": "Builtin and c-extension modules that are allowed to be imported and inspected by rope."
},
"pylsp.rope.ropeFolder": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all."
},
"pylsp.plugins.black.enabled": {
"type": "boolean",
"default": true,
"description": "Boolean to enable/disable the plugin."
},
"pylsp.plugins.black.cache_config": {
"type": "boolean",
"default": false,
"description": "A boolean to enable black configuration caching."
},
"pylsp.plugins.black.line_length": {
"type": "number",
"default": 88,
"description": "An integer that maps to black's max-line-length setting. Defaults to 88 (same as black's default). This can also be set through black's configuration files, which should be preferred for multi-user projects."
},
"pylsp.plugins.black.preview": {
"type": "boolean",
"default": false,
"description": "A boolean to enable or disable black's --preview setting."
},
"pylsp.plugins.black.skip_string_normalization": {
"type": "boolean",
"default": false,
"description": "A boolean to enable or disable black's --skip-string-normalization setting."
},
"pylsp.plugins.black.skip_magic_trailing_comma": {
"type": "boolean",
"default": false,
"description": "A boolean to enable or disable black's skip-magic-trailing-comma setting."
},
"pylsp.plugins.ruff.enabled": {
"type": "boolean",
"default": true,
"description": "Boolean to enable/disable the plugin."
},
"pylsp.plugins.ruff.formatEnabled": {
"type": "boolean",
"default": true,
"description": "Boolean to enable/disable the ruff formatter."
},
"pylsp.plugins.ruff.config": {
"type": [
"string",
null
],
"default": null,
"description": "Path to optional `pyproject.toml` file."
},
"pylsp.plugins.ruff.exclude": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "Exclude files from being checked by `ruff`."
},
"pylsp.plugins.ruff.executable": {
"type": [
"string",
null
],
"default": null,
"description": "Path to the ruff executable. Uses `os.executable -m \"ruff\"` by default."
},
"pylsp.plugins.ruff.ignore": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "Error codes to ignore."
},
"pylsp.plugins.ruff.extendIgnore": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "Same as ignore, but append to existing ignores."
},
"pylsp.plugins.ruff.lineLength": {
"type": [
"integer",
null
],
"default": null,
"description": "Set the line-length for length checks."
},
"pylsp.plugins.ruff.perFileIgnore": {
"type": [
"object",
null
],
"default": null,
"description": "File-specific error codes to be ignored."
},
"pylsp.plugins.ruff.select": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "List of error codes to enable."
},
"pylsp.plugins.ruff.extendSelect": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "Same as select, but append to existing error codes."
},
"pylsp.plugins.ruff.format": {
"type": [
"array",
null
],
"default": null,
"items": {
"type": "string"
},
"description": "List of error codes to fix during formatting. Empty by default, use `[\"I\"]` here to get import sorting as part of formatting."
},
"pylsp.plugins.ruff.unsafeFixes": {
"type": "boolean",
"default": false,
"description": "Boolean that enables/disables fixes that are marked \"unsafe\" by `ruff`."
},
"pylsp.plugins.ruff.preview": {
"type": "boolean",
"default": false,
"description": "Boolean that enables/disables rules & fixes that are marked \"preview\" by `ruff`."
},
"pylsp.plugins.ruff.severities": {
"type": [
"object",
"null"
],
"default": null,
"description": "Dictionary of custom severity levels for specific codes."
},
"pylsp.plugins.ruff.targetVersion": {
"type": [
"string",
null
],
"default": null,
"description": "The minimum Python version to target."
}
}
},
"commands": [
{
"command": "pylsp.builtin.install",
"title": "Install python lsp server and related tools"
},
{
"command": "pylsp.installServer",
"title": "(old command) Install python lsp server and related tools"
}
]
},
"dependencies": {
"toml": "^3.0.0"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}