Skip to content

Commit 55f50bd

Browse files
committed
update readme with how to not save log file
1 parent 8c1f485 commit 55f50bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ This extension contributes the following settings:
3030

3131
- `ooxml.fileFormatVersion`: Number that specifies the version of Office to use to validate OOXML files. Must be in `[2007, 2010, 2013, 2016, 2019]`. Defaults to 2019
3232
- `ooxml.outPutFilePath`:
33-
String that specifies the absolute filepath to write the output of the validator. If the filenames does not end in .json or .csv, ".csv" will be appended to the filename and saved as a .csv file. Path **MUST** be absolute
34-
- `ooxml.overwriteLogFile`: If true the log file will overwrite previous log files of the same name if they exist. If false a unique timestamp is added to the filename. Default is false.
33+
String that specifies the absolute file path to write the output of the validator. If the file name does not end in ".json" or ".csv", ".csv" will be appended to the filename and saved as a .csv file. Path **MUST** be absolute. If no value is set, no log file will be saved.
34+
- `ooxml.overwriteLogFile`: If true, the log file will overwrite previous log files of the same name if they exist. If false, a unique timestamp is added to the filename. Default is false.
3535

3636
## Release Notes
3737

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"ooxml.overwriteLogFile": {
4343
"type": "boolean",
4444
"default": false,
45-
"description": "If true the log file will overwrite previous log files of the same name if they exist, default is false."
45+
"description": "If true, the log file will overwrite previous log files of the same name if they exist, default is false."
4646
}
4747
}
4848
},
@@ -128,4 +128,4 @@
128128
"dependencies": {
129129
"csv-writer": "^1.6.0"
130130
}
131-
}
131+
}

0 commit comments

Comments
 (0)