File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -503,7 +503,8 @@ def convert_to_sarif(d):
503503 output_file . write ('\t\t\t\t"informationUri": "https://pvs-studio.com/en/docs/manual/0038/",\n' )
504504 output_file . write ('\t\t\t\t"version": "1.0.1",\n' )
505505 output_file . write ('\t\t\t\t"rules": ' )
506- json . dump (rulesList , output_file , indent = 4 ) # dumping rules in file
506+ output_file . write ('\n\t\t\t\t\t' )
507+ json . dump (rulesList , output_file , indent = 15 ) # dumping rules in file
507508 output_file . write ('\t\t\t }\n' ) # closing of driver
508509 output_file . write ('\t\t},\n' ) # closing of tool
509510 output_file . write ('\t\t"results": ' )
@@ -512,6 +513,6 @@ def convert_to_sarif(d):
512513 output_file . write ('\n\t]' )
513514 output_file . write ('\n}' ) # closing bracket for schema
514515 output_file . close ()
515-
516516
517-
517+
518+
You can’t perform that action at this time.
0 commit comments