@devkong/cli-nx 0.0.67-alpha.13 → 0.0.67-alpha.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli-nx",
3
- "version": "0.0.67-alpha.13",
3
+ "version": "0.0.67-alpha.15",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -20,10 +20,6 @@ load-plugins=
20
20
  # number of processors available to use.
21
21
  jobs=1
22
22
 
23
- # When enabled, pylint would attempt to guess common misconfiguration and emit
24
- # user-friendly hints instead of false-positive error messages.
25
- suggestion-mode=yes
26
-
27
23
  # Allow loading of arbitrary C extensions. Extensions are imported into the
28
24
  # active Python interpreter and may run arbitrary code.
29
25
  unsafe-load-any-extension=no
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "files.eol": "\n",
3
3
  "python.languageServer": "Pylance",
4
+ "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
5
+ "python.analysis.extraPaths": ["src"],
6
+ "pylint.args": ["--init-hook", "import sys; sys.path.insert(0, 'src')"],
4
7
  "[python]": {
5
8
  "editor.defaultFormatter": "ms-python.black-formatter",
6
9
  "editor.formatOnSave": true,