coc-pyright 1.1.333 → 1.1.334

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/lib/index.js +512 -401
  3. package/package.json +29 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coc-pyright",
3
- "version": "1.1.333",
3
+ "version": "1.1.334",
4
4
  "description": "Pyright extension for coc.nvim, static type checker for Python",
5
5
  "author": "Heyward Fann <fannheyward@gmail.com>",
6
6
  "license": "MIT",
@@ -159,6 +159,33 @@
159
159
  ],
160
160
  "scope": "resource"
161
161
  },
162
+ "python.analysis.include": {
163
+ "type": "array",
164
+ "default": [],
165
+ "items": {
166
+ "type": "string"
167
+ },
168
+ "description": "Paths of directories or files that should be included. If no paths are specified, pyright defaults to the workspace root directory. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character).",
169
+ "scope": "resource"
170
+ },
171
+ "python.analysis.exclude": {
172
+ "type": "array",
173
+ "default": [],
174
+ "items": {
175
+ "type": "string"
176
+ },
177
+ "description": "Paths of directories or files that should not be included. These override the include directories, allowing specific subdirectories to be excluded. Note that files in the exclude paths may still be included in the analysis if they are referenced (imported) by source files that are not excluded. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character). If no exclude paths are specified, pyright automatically excludes the following: `**/node_modules`, `**/__pycache__`, `.git` and any virtual environment directories.",
178
+ "scope": "resource"
179
+ },
180
+ "python.analysis.ignore": {
181
+ "type": "array",
182
+ "default": [],
183
+ "items": {
184
+ "type": "string"
185
+ },
186
+ "description": "Paths of directories or files whose diagnostic output (errors and warnings) should be suppressed even if they are an included file or within the transitive closure of an included file. Paths may contain wildcard characters ** (a directory or multiple levels of directories), * (a sequence of zero or more characters), or ? (a single character). If no value is provided, the value of python.linting.ignorePatterns (if set) will be used.",
187
+ "scope": "resource"
188
+ },
162
189
  "python.analysis.diagnosticSeverityOverrides": {
163
190
  "type": "object",
164
191
  "description": "Allows a user to override the severity levels for individual diagnostics.",
@@ -1600,6 +1627,6 @@
1600
1627
  ]
1601
1628
  },
1602
1629
  "dependencies": {
1603
- "pyright": "^1.1.333"
1630
+ "pyright": "^1.1.334"
1604
1631
  }
1605
1632
  }