Skip to content

Commit 2e9a007

Browse files
authored
Merge pull request #29 from Alinvor/kernel
[DONE]合并分支
2 parents 52002c7 + 1d1969c commit 2e9a007

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ venv.bak/
107107

108108

109109
# vscode files
110+
.vscode/
110111
.vscode/settings.json
111112

112113
# IDEA files

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,15 @@
6363
// "./venv/bin",
6464
// "./venv/Lib/python3.7/site-packages",
6565
],
66+
"python.envFile": "${workspaceFolder}/.env",
6667
"python.pythonPath": "venv2/bin/python",
6768
"python.formatting.provider": "yapf",
6869
"python.formatting.yapfArgs": [
6970
"--style", "{based_on_style: pep8 ,indent_width: 4, column_limit: 130}",
7071
],
71-
"python.languageServer": "Jedi",
72+
// "python.languageServer": "Jedi",
73+
"python.languageServer": "Pylance",
7274
// "python.languageServer": "Microsoft",
73-
// "python.languageServer": "Pylance",
7475
"python.linting.enabled": true,
7576
"python.linting.flake8Enabled": true,
7677
"python.linting.flake8Args": [
@@ -92,6 +93,7 @@
9293
"python.testing.cwd": "${workspaceFolder}",
9394
"python.testing.nosetestsEnabled": false,
9495
"python.testing.pytestEnabled": false,
96+
"python.testing.promptToConfigure": true,
9597
"python.testing.unittestEnabled": true,
9698
"workbench.iconTheme": "vscode-icons",
9799
"workbench.editor.enablePreview": true,

template/__init__with_pkgutil.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# -*- coding:utf-8 -*-
2+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

0 commit comments

Comments
 (0)