Skip to content

Commit

Permalink
Update partial-pyright.json (#4093)
Browse files Browse the repository at this point in the history
  • Loading branch information
InSyncWithFoo authored Sep 23, 2024
1 parent d095894 commit 0a3e561
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schemas/json/partial-pyright.json
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,9 @@
"reportAssertAlwaysTrue": {
"$ref": "#/definitions/diagnostic",
"title": "Controls reporting `assert` expressions that will always evaluate to `True`",
"description": "Generate or suppress diagnostics for `assert` statement that will provably always assert. This can be indicative of a programming error.",
"markdownDescription": "Generate or suppress diagnostics for `assert` statement that will provably always assert. This can be indicative of a programming error.",
"x-intellij-html-description": "Generate or suppress diagnostics for <code>assert</code> statement that will provably always assert. This can be indicative of a programming error.",
"description": "Generate or suppress diagnostics for `assert` statement that will provably always assert because its first argument is a parenthesized tuple (for example, `assert (v > 0, \"Bad value\")` when the intent was probably `assert v > 0, \"Bad value\"`). This is a common programming error.",
"markdownDescription": "Generate or suppress diagnostics for `assert` statement that will provably always assert because its first argument is a parenthesized tuple (for example, `assert (v > 0, \"Bad value\")` when the intent was probably `assert v > 0, \"Bad value\"`). This is a common programming error.",
"x-intellij-html-description": "Generate or suppress diagnostics for <code>assert</code> statement that will provably always assert because its first argument is a parenthesized tuple (for example, <code>assert (v &gt; 0, &quot;Bad value&quot;)</code> when the intent was probably <code>assert v &gt; 0, &quot;Bad value&quot;</code>). This is a common programming error.",
"default": "warning"
},
"reportSelfClsParameterName": {
Expand Down

0 comments on commit 0a3e561

Please sign in to comment.