Skip to content

Commit

Permalink
linter: report errors as markdown-style list for better visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
smathot committed Oct 13, 2023
1 parent 519c388 commit 500fbb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opensesame_extensions/osweb/oswebext/osweb_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def check_compatibility(exp, fullscreen):
list of text strings. An empty list indicates that the experiment is
compatible.
"""
return '\n'.join(
return '- ' + '\n - '.join(
check_supported_items(exp, fullscreen)
+ check_structure(exp, fullscreen)
+ check_filesize(exp))
Expand Down

0 comments on commit 500fbb2

Please sign in to comment.