-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.83 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.83 KB
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
{
"name": "inwt-python-ide-v2",
"displayName": "INWT Python IDE v2",
"description": "Extension bundle to develop Python applications for Data Science.",
"publisher": "inwtlab",
"repository": {
"url": "https://github.com/inwtlab/inwt-python-ide"
},
"icon": "inwt-logo-square.png",
"version": "25.11.0",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Extension Packs",
"Keymaps"
],
"contributes": {
"configuration": {
"title": "INWT Python IDE v2"
},
"configurationDefaults": {
"notebook.formatOnSave.enabled": true,
"notebook.codeActionsOnSave": {
"source.organizeImports": true
},
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoFormatStrings": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.pytestParameters": true,
"[python]": {
"files.trimFinalNewlines": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"rewrap.wrappingColumn": 100
},
"ruff.configurationPreference": "filesystemFirst",
"ruff.lineLength": 100,
"ruff.lint.select": [
"ALL"
],
"ruff.lint.ignore": [
"D",
"ANN"
],
"ruff.organizeImports": true
},
"keybindings": [
{
"key": "ctrl+f12",
"command": "workbench.action.navigateBack"
}
]
},
"extensionPack": [
"charliermarsh.ruff",
"ms-python.python",
"ms-python.vscode-python-envs",
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker",
"ms-toolsai.jupyter",
"inwtlab.python-smart-execute",
"visualstudioexptteam.vscodeintellicode"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.52.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"eslint": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
}
}