We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a723fb1 commit 66da340Copy full SHA for 66da340
package.json
@@ -2,7 +2,7 @@
2
"name": "write-good-linter",
3
"displayName": "Write Good Linter",
4
"description": "Applies the Write Good Linter to your Markdown, so you can write more good.",
5
- "version": "0.1.2",
+ "version": "0.1.3",
6
"publisher": "travisthetechie",
7
"engines": {
8
"vscode": "^1.26.0"
src/extension.ts
@@ -58,7 +58,7 @@ function resetDiagnostics() {
58
}
59
60
function doLint(document: TextDocument) {
61
- var wgConfig: object = workspace.getConfiguration('write-good').get('write-good-config');
+ var wgConfig: object = workspace.getConfiguration('write-good').get('write-good.write-good-config');
62
if (isNullOrUndefined(wgConfig)) {
63
wgConfig = {};
64
0 commit comments