aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xreporter.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/reporter.js b/reporter.js
index cce9552..414ce40 100755
--- a/reporter.js
+++ b/reporter.js
@@ -176,11 +176,11 @@ let PLUGIN_INFO =
options: [LIMIT_OPTION],
action: function (file, args) {
function writeSection (title, writer) {
- file.write(
- '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""\n' +
- '" ' + title + '\n\n'
- );
+ file.writeln('""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""');
+ file.writeln('" ' + title);
+ file.writeln('');
writer(file, args);
+ file.writeln('\n');
}
writeSection('Color Scheme', Writer.colors);