Skip to content

Commit

Permalink
deploy: f7ad65d
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Aug 26, 2024
1 parent fc4c80e commit d89f07a
Show file tree
Hide file tree
Showing 7 changed files with 11,673 additions and 11,837 deletions.
2,156 changes: 1,078 additions & 1,078 deletions qodana/results/descriptions/Code_Inspection.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions qodana/results/metaInformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"vcs": {
"sarifIdea": {
"repositoryUri": "https://github.com/1c-syntax/bsl-language-server.git",
"revisionId": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1",
"revisionId": "f7ad65d27328e93c5eb337a1f998ac368be4b881",
"branch": "develop"
}
},
"repoUrl": "https://github.com/1c-syntax/bsl-language-server.git",
"deviceId": "200820300000000-b1a5-d275-f8e7-faf9fd093ee8",
"jobUrl": "https://github.com/1c-syntax/bsl-language-server/actions/runs/10521794251"
"jobUrl": "https://github.com/1c-syntax/bsl-language-server/actions/runs/10555096888"
}
}
8 changes: 4 additions & 4 deletions qodana/results/projectStructure/qodana.spdx.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Tool: Qodana",
"Organization: JetBrains s.r.o."
],
"created": "2024-08-23T07:37:46Z"
"created": "2024-08-26T07:02:13Z"
},
"packages": [
{
Expand All @@ -27,7 +27,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -48,7 +48,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -69,7 +69,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand Down
8 changes: 4 additions & 4 deletions qodana/results/projectStructure/thirdPartySoftwareList.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Tool: Qodana",
"Organization: JetBrains s.r.o."
],
"created": "2024-08-23T07:37:46Z"
"created": "2024-08-26T07:02:13Z"
},
"packages": [
{
Expand All @@ -27,7 +27,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -48,7 +48,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -69,7 +69,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "4ffc3b4ff163de5ccd9e756c8419239f122c38e1"
"checksumValue": "f7ad65d27328e93c5eb337a1f998ac368be4b881"
}
],
"primaryPackagePurpose": "SOURCE"
Expand Down
58 changes: 1 addition & 57 deletions qodana/results/promo.json
Original file line number Diff line number Diff line change
@@ -1,57 +1 @@
{"version":"3","listProblem":[{
"tool": "Code Inspection",
"category": "Code maturity",
"type": "Commented out code",
"severity": "Moderate",
"comment": "Commented out code (6 lines)",
"detailsInfo": "Reports comments that contain Java code.\n\nUsually, code that is commented out gets outdated very quickly and becomes misleading.\nAs most projects use some kind of version control system,\nit is better to delete commented out code completely and use the VCS history instead.\n\nNew in 2020.3",
"sources": [
{
"type": "file",
"path": "src/main/java/com/github/_1c_syntax/bsl/languageserver/inlayhints/SourceDefinedMethodCallInlayHintSupplier.java",
"language": "JAVA",
"line": 72,
"offset": 1,
"length": 2,
"code": {
"startLine": 70,
"length": 2,
"offset": 36,
"surroundingCode": " var range = params.getRange();\n\n// var ast = documentContext.getAst();\n// Trees.findAllRuleNodes(\n// ast,"
}
}
],
"attributes": {
"module": "bsl-language-server.main",
"inspectionName": "CommentedOutCode"
},
"hash": "5f0674d74495771954e4a3d3cbe6882a73d6c81eae51abc3ad43b4d2c3b0eb28"
},{
"tool": "Code Inspection",
"category": "Verbose or redundant code constructs",
"type": "Unnecessary 'continue' statement",
"severity": "High",
"comment": "`continue` is unnecessary as the last statement in a loop",
"detailsInfo": "Reports `continue` statements if they are the last reachable statements in the loop. These `continue` statements are unnecessary and can be safely removed.\n\nExample:\n\n\n for (String element: elements) {\n System.out.println();\n continue;\n }\n\nAfter the quick-fix is applied:\n\n\n for (String element: elements) {\n System.out.println();\n }\n\nThe inspection doesn't analyze JSP files.\n\n\nUse the **Ignore in then branch of 'if' statement with 'else' branch** option to ignore\n`continue` statements when they are placed in a `then` branch of a complete\n`if`-`else` statement.\n\nExample:\n\n\n for (String element: elements) {\n if(element.isEmpty()) {\n continue;\n } else {\n //...\n }\n }\n",
"sources": [
{
"type": "file",
"path": "src/main/java/com/github/_1c_syntax/bsl/languageserver/utils/expressiontree/ExpressionTreeBuildingVisitor.java",
"language": "JAVA",
"line": 99,
"offset": 11,
"length": 8,
"code": {
"startLine": 97,
"length": 8,
"offset": 144,
"surroundingCode": " visitMember((BSLParser.MemberContext) child);\n } else if (child.getClass() == BSLParser.PreprocessorContext.class) {\n continue;\n } else {\n throw new IllegalStateException();"
}
}
],
"attributes": {
"module": "bsl-language-server.main",
"inspectionName": "UnnecessaryContinue"
},
"hash": "8cc81c86fb327f144191359d8026afa00236f66f632e452051aa19d63a0540d0"
}]}
{"version":"3","listProblem":[]}
Loading

0 comments on commit d89f07a

Please sign in to comment.