-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "write-good-linter",
"displayName": "Write Good Linter",
"description": "Applies the Write Good Linter to your Markdown, so you can write more good.",
"version": "0.1.7",
"publisher": "travisthetechie",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "write-good",
"properties": {
"write-good.debounce-time-in-ms": {
"type": [
"null",
"number"
],
"default": 200,
"markdownDescription": "Minimum milliseconds between linting attempts. Default is 200ms, increasing this can reduce load when working with large files. Linting on save and load are not rate limited.",
"scope": "resource"
},
"write-good.only-lint-on-save": {
"type": [
"null",
"boolean"
],
"default": false,
"markdownDescription": "Disables linting during editing for large files. A save triggers linting.",
"scope": "resource"
},
"write-good.write-good-config": {
"type": [
"object",
"null"
],
"default": null,
"markdownDescription": "Configuration passed to [write-good](https://www.npmjs.com/package/write-good). Example to enable eprime check is `\"write-good.write-good-config\": { \"eprime\": true }`.",
"scope": "resource"
},
"write-good.languages": {
"default": [
"markdown",
"plaintext"
],
"type": [
"string",
"array"
],
"items": {
"type": "string"
},
"description": "Languages to lint with the write-good linter. '*' to enable on all languages.",
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"test:gui": "VSCODE_TEST_GUI=1 node ./out/test/runTest.js",
"test:ci": "VSCODE_TEST_GUI=0 node ./out/test/runTest.js"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.0",
"@types/vscode": "1.95.0",
"@types/write-good": "1.0.3",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vscode/test-electron": "^2.4.0",
"chai": "^6.0.1",
"eslint": "^9.34.0",
"glob": "^11.0.0",
"mocha": "12.0.0-beta-10",
"typescript": "^5.9.2"
},
"dependencies": {
"write-good": "^1.0.8"
},
"license": "MIT",
"repository": {
"url": "https://github.com/TravisTheTechie/vscode-write-good"
}
}