Skip to content

Commit

Permalink
chore(deps): bump basedpyright from 1.10.4 to 1.11.0 in /language-ser…
Browse files Browse the repository at this point in the history
…ver (#11)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and github-actions[bot] authored May 1, 2024
1 parent c62540e commit 476b321
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 25 deletions.
14 changes: 7 additions & 7 deletions language-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"dependencies": {
"basedpyright": "^1.10.4"
"basedpyright": "^1.11.0"
}
}
73 changes: 56 additions & 17 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,19 @@
"allowComments": true,
"allowTrailingCommas": true,
"definitions": {
"deprecated": {
"anyOf": [
{
"$ref": "#/definitions/diagnostic"
},
{
"enum": [
"deprecated"
],
"type": "string"
}
]
},
"diagnostic": {
"anyOf": [
{
Expand All @@ -434,6 +447,32 @@
"type": "string"
}
]
},
"unreachable": {
"anyOf": [
{
"$ref": "#/definitions/diagnostic"
},
{
"enum": [
"unreachable"
],
"type": "string"
}
]
},
"unused": {
"anyOf": [
{
"$ref": "#/definitions/diagnostic"
},
{
"enum": [
"unused"
],
"type": "string"
}
]
}
},
"description": "Pyright Configuration Schema",
Expand Down Expand Up @@ -662,8 +701,8 @@
},
"reportDeprecated": {
"$id": "#/properties/reportDeprecated",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/deprecated",
"default": "deprecated",
"title": "Controls reporting of use of deprecated class or function"
},
"reportDuplicateImport": {
Expand Down Expand Up @@ -777,7 +816,7 @@
"reportInvalidTypeForm": {
"$id": "#/properties/reportInvalidTypeForm",
"$ref": "#/definitions/diagnostic",
"default": "warning",
"default": "error",
"title": "Controls reporting of type expressions that use an invalid form"
},
"reportInvalidTypeVarUse": {
Expand Down Expand Up @@ -825,7 +864,7 @@
"reportMissingTypeStubs": {
"$id": "#/properties/reportMissingTypeStubs",
"$ref": "#/definitions/diagnostic",
"default": "warning",
"default": "none",
"title": "Controls reporting of imports that cannot be resolved to type stub files"
},
"reportNoOverloadImplementation": {
Expand Down Expand Up @@ -938,8 +977,8 @@
},
"reportTypeCommentUsage": {
"$id": "#/properties/reportTypeCommentUsage",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/deprecated",
"default": "deprecated",
"title": "Controls reporting of deprecated type comment usage"
},
"reportTypedDictNotRequiredAccess": {
Expand Down Expand Up @@ -1034,8 +1073,8 @@
},
"reportUnreachable": {
"$id": "#/properties/reportUnreachable",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/unreachable",
"default": "unreachable",
"title": "Controls reporting of unreachable code"
},
"reportUnsupportedDunderAll": {
Expand Down Expand Up @@ -1076,8 +1115,8 @@
},
"reportUnusedClass": {
"$id": "#/properties/reportUnusedClass",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/unused",
"default": "unused",
"title": "Controls reporting of private classes that are not accessed"
},
"reportUnusedCoroutine": {
Expand All @@ -1088,7 +1127,7 @@
},
"reportUnusedExcept": {
"$id": "#/properties/reportUnusedExcept",
"$ref": "#/definitions/diagnostic",
"$ref": "#/definitions/unreachable",
"default": "error",
"title": "Controls reporting of unreachable except clauses"
},
Expand All @@ -1100,20 +1139,20 @@
},
"reportUnusedFunction": {
"$id": "#/properties/reportUnusedFunction",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/unused",
"default": "unused",
"title": "Controls reporting of private functions or methods that are not accessed"
},
"reportUnusedImport": {
"$id": "#/properties/reportUnusedImport",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/unused",
"default": "unused",
"title": "Controls reporting of imported symbols that are not referenced within the source file"
},
"reportUnusedVariable": {
"$id": "#/properties/reportUnusedVariable",
"$ref": "#/definitions/diagnostic",
"default": "none",
"$ref": "#/definitions/unused",
"default": "unused",
"title": "Controls reporting of local variables that are not accessed"
},
"reportWildcardImportFromLibrary": {
Expand Down

0 comments on commit 476b321

Please sign in to comment.