forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
2050 lines (2050 loc) · 96.4 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
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "python",
"displayName": "Python",
"description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
"version": "2022.3.0-dev",
"featureFlags": {
"usingNewInterpreterStorage": true
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "Only Partial IntelliSense with Pylance is supported. Cannot execute Python with untrusted files."
},
"virtualWorkspaces": {
"supported": "limited",
"description": "Only Partial IntelliSense supported."
}
},
"languageServerVersion": "0.5.30",
"publisher": "ms-python",
"enabledApiProposals": [
"quickPickSortByLabel",
"testObserver",
"notebookEditor"
],
"author": {
"name": "Microsoft Corporation"
},
"license": "MIT",
"homepage": "https://github.com/Microsoft/vscode-python",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-python"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-python/issues"
},
"qna": "https://github.com/microsoft/vscode-python/discussions/categories/q-a",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"engines": {
"vscode": "^1.63.1"
},
"keywords": [
"python",
"django",
"unittest",
"multi-root ready"
],
"categories": [
"Programming Languages",
"Debuggers",
"Linters",
"Formatters",
"Other",
"Data Science",
"Machine Learning",
"Notebooks"
],
"activationEvents": [
"onDebugInitialConfigurations",
"onLanguage:python",
"onDebugResolve:python",
"onCommand:python.createNewFile",
"onCommand:python.execInTerminal",
"onCommand:python.debugInTerminal",
"onCommand:python.sortImports",
"onCommand:python.setInterpreter",
"onCommand:python.setShebangInterpreter",
"onCommand:python.viewLanguageServerOutput",
"onCommand:python.viewOutput",
"onCommand:python.execSelectionInTerminal",
"onCommand:python.execSelectionInDjangoShell",
"onCommand:python.startREPL",
"onCommand:python.goToPythonObject",
"onCommand:python.reportIssue",
"onCommand:python.setLinter",
"onCommand:python.enableLinting",
"onCommand:python.createTerminal",
"onCommand:python.configureTests",
"onCommand:python.clearWorkspaceInterpreter",
"onCommand:python.enableSourceMapSupport",
"onCommand:python.launchTensorBoard",
"onCommand:python.clearPersistentStorage",
"onWalkthrough:pythonWelcome",
"onWalkthrough:pythonWelcomeWithDS",
"onWalkthrough:pythonDataScienceWelcome",
"workspaceContains:mspythonconfig.json",
"workspaceContains:pyproject.toml",
"workspaceContains:Pipfile",
"workspaceContains:setup.py",
"workspaceContains:requirements.txt",
"workspaceContains:manage.py",
"workspaceContains:app.py"
],
"main": "./out/client/extension",
"browser": "./dist/extension.browser.js",
"contributes": {
"walkthroughs": [
{
"id": "pythonWelcome",
"title": "Get started with Python development",
"description": "Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!",
"when": "workspacePlatform != webworker",
"steps": [
{
"id": "python.installPythonWin",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python from the [Microsoft Store](https://aka.ms/AAd9rms).\n\n[Install Python](https://aka.ms/AAd9rms)\n",
"media": {
"markdown": "resources/walkthrough/install-python-windows.md"
},
"when": "workspacePlatform == windows"
},
{
"id": "python.installPythonMac",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Open Terminal](command:workbench.action.terminal.new)\n",
"media": {
"markdown": "resources/walkthrough/install-python-macos.md"
},
"when": "workspacePlatform == mac",
"command": "workbench.action.terminal.new"
},
{
"id": "python.installPythonLinux",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Open Terminal](command:workbench.action.terminal.new)\n",
"media": {
"markdown": "resources/walkthrough/install-python-linux.md"
},
"when": "workspacePlatform == linux",
"command": "workbench.action.terminal.new"
},
{
"id": "python.createPythonFile",
"title": "Create a Python file",
"description": "[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile)",
"media": {
"svg": "resources/walkthrough/open-folder.svg",
"altText": "Open a Python file or a folder with a Python project."
},
"when": ""
},
{
"id": "python.selectInterpreter",
"title": "Select a Python Interpreter",
"description": "Choose which Python interpreter/environment you want to use for your Python project.\n[Select Python Interpreter](command:python.setInterpreter)\n**Tip**: Run the ``Python: Select Interpreter`` command in the [Command Palette](command:workbench.action.showCommands).\nReload the window if you installed Python but don't see it in the list (``Developer: Reload Window`` command). ",
"media": {
"svg": "resources/walkthrough/python-interpreter-v2.svg",
"altText": "Selecting a python interpreter from the status bar"
},
"when": ""
},
{
"id": "python.runAndDebug",
"title": "Run and debug your Python file",
"description": "Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)",
"media": {
"svg": "resources/walkthrough/rundebug2.svg",
"altText": "How to run and debug in VS Code with F5 or the play button on the top right."
},
"when": ""
},
{
"id": "python.learnMore",
"title": "Explore more resources",
"description": "🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 💌 [Sign up](https://aka.ms/python-vscode-mailinglist) for tips and tutorials through our mailing list. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Learn More](https://aka.ms/AA8dqti)",
"media": {
"altText": "Image representing our documentation page and mailing list resources.",
"svg": "resources/walkthrough/learnmore.svg"
},
"when": ""
}
]
},
{
"id": "pythonWelcomeWithDS",
"title": "Get started with Python development",
"description": "Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!",
"when": "false",
"steps": [
{
"id": "python.installPythonWin",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python from the [Microsoft Store](https://aka.ms/AAd9rms).\n\n[Install Python](https://aka.ms/AAd9rms)\n",
"media": {
"markdown": "resources/walkthrough/install-python-windows.md"
},
"when": "workspacePlatform == windows"
},
{
"id": "python.installPythonMac",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Open Terminal](command:workbench.action.terminal.new)\n",
"media": {
"markdown": "resources/walkthrough/install-python-macos.md"
},
"when": "workspacePlatform == mac",
"command": "workbench.action.terminal.new"
},
{
"id": "python.installPythonLinux",
"title": "Install Python",
"description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Open Terminal](command:workbench.action.terminal.new)\n",
"media": {
"markdown": "resources/walkthrough/install-python-linux.md"
},
"when": "workspacePlatform == linux",
"command": "workbench.action.terminal.new"
},
{
"id": "python.createPythonFile",
"title": "Create a Python file",
"description": "[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile)",
"media": {
"svg": "resources/walkthrough/open-folder.svg",
"altText": "Open a Python file or a folder with a Python project."
},
"when": ""
},
{
"id": "python.selectInterpreter",
"title": "Select a Python Interpreter",
"description": "Choose which Python interpreter/environment you want to use for your Python project.\n[Select Python Interpreter](command:python.setInterpreter)\n**Tip**: Run the ``Python: Select Interpreter`` command in the [Command Palette](command:workbench.action.showCommands).\nReload the window if you installed Python but don't see it in the list (``Developer: Reload Window`` command). ",
"media": {
"svg": "resources/walkthrough/python-interpreter-v2.svg",
"altText": "Selecting a python interpreter from the status bar"
},
"when": ""
},
{
"id": "python.runAndDebug",
"title": "Run and debug your Python file",
"description": "Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)",
"media": {
"svg": "resources/walkthrough/rundebug2.svg",
"altText": "How to run and debug in VS Code with F5 or the play button on the top right."
},
"when": ""
},
{
"id": "python.learnMoreWithDS",
"title": "Explore more resources",
"description": "🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n 💌 [Sign up](https://aka.ms/python-vscode-mailinglist) for tips and tutorials through our mailing list. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Learn More](https://aka.ms/AA8dqti)",
"media": {
"altText": "Image representing our documentation page and mailing list resources.",
"svg": "resources/walkthrough/learnmore.svg"
},
"when": ""
}
]
},
{
"id": "pythonDataScienceWelcome",
"title": "Get started with Python for Data Science",
"description": "Your first steps to getting started with a Data Science project with Python!",
"when": "false",
"steps": [
{
"id": "python.installJupyterExt",
"title": "Install Jupyter extension",
"description": "If you haven't already, install the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") to take full advantage of notebooks experiences in VS Code!\n \n[Search Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\")",
"media": {
"svg": "resources/walkthrough/data-science.svg",
"altText": "Creating a new Jupyter notebook"
}
},
{
"id": "python.createNewNotebook",
"title": "Create or open a Jupyter Notebook",
"description": "Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create New Blank Notebook``.\n[Create new Jupyter Notebook](command:toSide:jupyter.createnewnotebook)\n If you have an existing project, you can also [open a folder](command:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:git.clone).",
"media": {
"svg": "resources/walkthrough/create-notebook.svg",
"altText": "Creating a new Jupyter notebook"
},
"completionEvents": [
"onCommand:jupyter.createnewnotebook",
"onCommand:workbench.action.files.openFolder",
"onCommand:workbench.action.files.openFileFolder"
]
},
{
"id": "python.openInteractiveWindow",
"title": "Open the Python Interactive Window",
"description": "The Python Interactive Window is a Python shell where you can execute and view the results of your Python code. You can create cells on a Python file by typing ``#%%``.\n \nTo open the interactive window anytime, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create Interactive Window``.\n[Open Interactive Window](command:jupyter.createnewinteractive)",
"media": {
"svg": "resources/walkthrough/interactive-window.svg",
"altText": "Opening python interactive window"
},
"completionEvents": [
"onCommand:jupyter.createnewinteractive"
]
},
{
"id": "python.dataScienceLearnMore",
"title": "Find out more!",
"description": "📒 Take a look into the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") features, by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 🏃🏻 Find out more features in our [Tutorials](https://aka.ms/AAdjzpd). \n[Learn more](https://aka.ms/AAdar6q)",
"media": {
"svg": "resources/walkthrough/learnmore.svg",
"altText": "Image representing our documentation page and mailing list resources."
}
}
]
}
],
"breakpoints": [
{
"language": "html"
},
{
"language": "jinja"
},
{
"language": "python"
}
],
"commands": [
{
"title": "%python.command.python.createNewFile.title%",
"shortTitle": "%python.menu.createNewFile.title%",
"category": "Python",
"command": "python.createNewFile",
"when": "config.python.createNewFileEnabled"
},
{
"category": "Python",
"command": "python.analysis.restartLanguageServer",
"title": "%python.command.python.analysis.restartLanguageServer.title%"
},
{
"category": "Python",
"command": "python.clearPersistentStorage",
"title": "%python.command.python.clearPersistentStorage.title%"
},
{
"category": "Python",
"command": "python.clearWorkspaceInterpreter",
"title": "%python.command.python.clearWorkspaceInterpreter.title%"
},
{
"category": "Python",
"command": "python.configureTests",
"title": "%python.command.python.configureTests.title%"
},
{
"category": "Python",
"command": "python.createTerminal",
"title": "%python.command.python.createTerminal.title%"
},
{
"category": "Python",
"command": "python.enableLinting",
"title": "%python.command.python.enableLinting.title%"
},
{
"category": "Python",
"command": "python.enableSourceMapSupport",
"title": "%python.command.python.enableSourceMapSupport.title%"
},
{
"category": "Python",
"command": "python.execInTerminal",
"title": "%python.command.python.execInTerminal.title%"
},
{
"category": "Python",
"command": "python.execInTerminal-icon",
"icon": "$(play)",
"title": "%python.command.python.execInTerminalIcon.title%"
},
{
"category": "Python",
"command": "python.debugInTerminal",
"icon": "$(debug-alt)",
"title": "%python.command.python.debugInTerminal.title%"
},
{
"category": "Python",
"command": "python.execSelectionInDjangoShell",
"title": "%python.command.python.execSelectionInDjangoShell.title%"
},
{
"category": "Python",
"command": "python.execSelectionInTerminal",
"title": "%python.command.python.execSelectionInTerminal.title%"
},
{
"category": "Python",
"command": "python.goToPythonObject",
"title": "%python.command.python.goToPythonObject.title%"
},
{
"category": "Python",
"command": "python.launchTensorBoard",
"title": "%python.command.python.launchTensorBoard.title%"
},
{
"category": "Python",
"command": "python.refreshTensorBoard",
"enablement": "python.hasActiveTensorBoardSession",
"icon": "$(refresh)",
"title": "%python.command.python.refreshTensorBoard.title%"
},
{
"category": "Test",
"command": "python.refreshTests",
"icon": "$(refresh)",
"title": "%python.command.python.refreshTests.title%"
},
{
"category": "Test",
"command": "python.refreshingTests",
"icon": {
"dark": "resources/dark/discovering-tests.svg",
"light": "resources/light/discovering-tests.svg"
},
"title": "%python.command.python.refreshingTests.title%"
},
{
"category": "Test",
"command": "python.stopRefreshingTests",
"icon": "$(beaker-stop)",
"title": "%python.command.python.stopRefreshingTests.title%"
},
{
"category": "Python",
"command": "python.reportIssue",
"title": "%python.command.python.reportIssue.title%"
},
{
"category": "Test",
"command": "testing.reRunFailTests",
"icon": "$(run-errors)",
"title": "%python.command.testing.rerunFailedTests.title%"
},
{
"category": "Python",
"command": "python.runLinting",
"title": "%python.command.python.runLinting.title%"
},
{
"category": "Python",
"command": "python.setInterpreter",
"title": "%python.command.python.setInterpreter.title%"
},
{
"category": "Python",
"command": "python.setLinter",
"title": "%python.command.python.setLinter.title%"
},
{
"category": "Python Refactor",
"command": "python.sortImports",
"title": "%python.command.python.sortImports.title%"
},
{
"category": "Python",
"command": "python.startREPL",
"title": "%python.command.python.startREPL.title%"
},
{
"category": "Python",
"command": "python.viewLanguageServerOutput",
"enablement": "python.hasLanguageServerOutputChannel",
"title": "%python.command.python.viewLanguageServerOutput.title%"
},
{
"category": "Python",
"command": "python.viewOutput",
"icon": {
"dark": "resources/dark/repl.svg",
"light": "resources/light/repl.svg"
},
"title": "%python.command.python.viewOutput.title%"
}
],
"configuration": {
"properties": {
"python.autoComplete.extraPaths": {
"default": [],
"description": "List of paths to libraries and the like that need to be imported by auto complete engine. E.g. when using Google App SDK, the paths are not in system path, hence need to be added into this list.",
"scope": "resource",
"type": "array"
},
"python.condaPath": {
"default": "",
"description": "Path to the conda executable to use for activation (version 4.4+).",
"scope": "machine",
"type": "string"
},
"python.createNewFileEnabled": {
"default": "false",
"description": "Enable the `Python: New Python File` command.",
"scope": "machine",
"type": "boolean",
"tags": [
"experimental"
]
},
"python.defaultInterpreterPath": {
"default": "python",
"description": "Path to default Python to use when extension loads up for the first time, no longer used once an interpreter is selected for the workspace. See https://aka.ms/AAfekmf to understand when this is used.",
"scope": "machine-overridable",
"type": "string"
},
"python.diagnostics.sourceMapsEnabled": {
"default": false,
"description": "Enable source map support for meaningful stack traces in error logs.",
"scope": "application",
"type": "boolean"
},
"python.disableInstallationCheck": {
"default": false,
"description": "Whether to check if Python is installed (also warn when using the macOS-installed Python).",
"scope": "resource",
"type": "boolean"
},
"python.envFile": {
"default": "${workspaceFolder}/.env",
"description": "Absolute path to a file containing environment variable definitions.",
"scope": "resource",
"type": "string"
},
"python.experiments.enabled": {
"default": true,
"description": "Enables A/B tests experiments in the Python extension. If enabled, you may get included in proposed enhancements and/or features.",
"scope": "machine",
"type": "boolean"
},
"python.experiments.optInto": {
"default": [],
"description": "List of experiment to opt into. If empty, user is assigned the default experiment groups. See https://github.com/microsoft/vscode-python/wiki/Experiments for more details.",
"items": {
"enum": [
"All",
"pythonDeprecatePythonPath",
"pythonSurveyNotification",
"pythonInterpreterInfoPinned",
"pythonInterpreterInfoUnpinned"
]
},
"scope": "machine",
"type": "array"
},
"python.experiments.optOutFrom": {
"default": [],
"description": "List of experiment to opt out of. If empty, user is assigned the default experiment groups. See https://github.com/microsoft/vscode-python/wiki/Experiments for more details.",
"items": {
"enum": [
"All",
"pythonDeprecatePythonPath",
"pythonSurveyNotification",
"pythonInterpreterInfoPinned",
"pythonInterpreterInfoUnpinned"
]
},
"scope": "machine",
"type": "array"
},
"python.formatting.autopep8Args": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.formatting.autopep8Path": {
"default": "autopep8",
"description": "Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.formatting.blackArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.formatting.blackPath": {
"default": "black",
"description": "Path to Black, you can use a custom version of Black by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.formatting.provider": {
"default": "autopep8",
"description": "Provider for formatting. Possible options include 'autopep8', 'black', and 'yapf'.",
"enum": [
"autopep8",
"black",
"none",
"yapf"
],
"scope": "resource",
"type": "string"
},
"python.formatting.yapfArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.formatting.yapfPath": {
"default": "yapf",
"description": "Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.globalModuleInstallation": {
"default": false,
"description": "Whether to install Python modules globally when not using an environment.",
"scope": "resource",
"type": "boolean"
},
"python.languageServer": {
"default": "Default",
"description": "Defines type of the language server.",
"enum": [
"Default",
"Jedi",
"Pylance",
"None"
],
"enumDescriptions": [
"Automatically select a language server: Pylance if installed and available, otherwise fallback to Jedi.",
"Use Jedi behind the Language Server Protocol (LSP) as a language server.",
"Use Pylance as a language server.",
"Disable language server capabilities."
],
"scope": "window",
"type": "string"
},
"python.linting.banditArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.banditEnabled": {
"default": false,
"description": "Whether to lint Python files using bandit.",
"scope": "resource",
"type": "boolean"
},
"python.linting.banditPath": {
"default": "bandit",
"description": "Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.cwd": {
"default": null,
"description": "Optional working directory for linters.",
"scope": "resource",
"type": "string"
},
"python.linting.enabled": {
"default": true,
"description": "Whether to lint Python files.",
"scope": "resource",
"type": "boolean"
},
"python.linting.flake8Args": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.flake8CategorySeverity.E": {
"default": "Error",
"description": "Severity of Flake8 message type 'E'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.flake8CategorySeverity.F": {
"default": "Error",
"description": "Severity of Flake8 message type 'F'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.flake8CategorySeverity.W": {
"default": "Warning",
"description": "Severity of Flake8 message type 'W'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.flake8Enabled": {
"default": false,
"description": "Whether to lint Python files using flake8",
"scope": "resource",
"type": "boolean"
},
"python.linting.flake8Path": {
"default": "flake8",
"description": "Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.ignorePatterns": {
"default": [
"**/site-packages/**/*.py",
".vscode/*.py"
],
"description": "Patterns used to exclude files or folders from being linted.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.lintOnSave": {
"default": true,
"description": "Whether to lint Python files when saved.",
"scope": "resource",
"type": "boolean"
},
"python.linting.maxNumberOfProblems": {
"default": 100,
"description": "Controls the maximum number of problems produced by the server.",
"scope": "resource",
"type": "number"
},
"python.linting.mypyArgs": {
"default": [
"--follow-imports=silent",
"--ignore-missing-imports",
"--show-column-numbers",
"--no-pretty"
],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.mypyCategorySeverity.error": {
"default": "Error",
"description": "Severity of Mypy message type 'Error'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.mypyCategorySeverity.note": {
"default": "Information",
"description": "Severity of Mypy message type 'Note'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.mypyEnabled": {
"default": false,
"description": "Whether to lint Python files using mypy.",
"scope": "resource",
"type": "boolean"
},
"python.linting.mypyPath": {
"default": "mypy",
"description": "Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.prospectorArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.prospectorEnabled": {
"default": false,
"description": "Whether to lint Python files using prospector.",
"scope": "resource",
"type": "boolean"
},
"python.linting.prospectorPath": {
"default": "prospector",
"description": "Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pycodestyleArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.pycodestyleCategorySeverity.E": {
"default": "Error",
"description": "Severity of pycodestyle message type 'E'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pycodestyleCategorySeverity.W": {
"default": "Warning",
"description": "Severity of pycodestyle message type 'W'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pycodestyleEnabled": {
"default": false,
"description": "Whether to lint Python files using pycodestyle",
"scope": "resource",
"type": "boolean"
},
"python.linting.pycodestylePath": {
"default": "pycodestyle",
"description": "Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pydocstyleArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.pydocstyleEnabled": {
"default": false,
"description": "Whether to lint Python files using pydocstyle",
"scope": "resource",
"type": "boolean"
},
"python.linting.pydocstylePath": {
"default": "pydocstyle",
"description": "Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pylamaArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.pylamaEnabled": {
"default": false,
"description": "Whether to lint Python files using pylama.",
"scope": "resource",
"type": "boolean"
},
"python.linting.pylamaPath": {
"default": "pylama",
"description": "Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.linting.pylintArgs": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"python.linting.pylintCategorySeverity.convention": {
"default": "Information",
"description": "Severity of Pylint message type 'Convention/C'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pylintCategorySeverity.error": {
"default": "Error",
"description": "Severity of Pylint message type 'Error/E'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pylintCategorySeverity.fatal": {
"default": "Error",
"description": "Severity of Pylint message type 'Fatal/F'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pylintCategorySeverity.refactor": {
"default": "Hint",
"description": "Severity of Pylint message type 'Refactor/R'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pylintCategorySeverity.warning": {
"default": "Warning",
"description": "Severity of Pylint message type 'Warning/W'.",
"enum": [
"Error",
"Hint",
"Information",
"Warning"
],
"scope": "resource",
"type": "string"
},
"python.linting.pylintEnabled": {
"default": false,
"description": "Whether to lint Python files using pylint.",
"scope": "resource",
"type": "boolean"
},
"python.linting.pylintPath": {
"default": "pylint",
"description": "Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.",
"scope": "machine-overridable",
"type": "string"
},
"python.logging.level": {
"default": "error",
"description": "The logging level the extension logs at, defaults to 'error'",