Skip to content

Commit 66da340

Browse files
Removing a warning message in the debug console.
1 parent a723fb1 commit 66da340

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "write-good-linter",
33
"displayName": "Write Good Linter",
44
"description": "Applies the Write Good Linter to your Markdown, so you can write more good.",
5-
"version": "0.1.2",
5+
"version": "0.1.3",
66
"publisher": "travisthetechie",
77
"engines": {
88
"vscode": "^1.26.0"

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function resetDiagnostics() {
5858
}
5959

6060
function doLint(document: TextDocument) {
61-
var wgConfig: object = workspace.getConfiguration('write-good').get('write-good-config');
61+
var wgConfig: object = workspace.getConfiguration('write-good').get('write-good.write-good-config');
6262
if (isNullOrUndefined(wgConfig)) {
6363
wgConfig = {};
6464
}

0 commit comments

Comments
 (0)