-
- Downloads
added warnings
Showing
- .vscode/settings.json 3 additions, 1 deletion.vscode/settings.json
- package-lock.json 10 additions, 0 deletionspackage-lock.json
- package.json 11 additions, 8 deletionspackage.json
- server/src/ErrorMatcher.ts 62 additions, 32 deletionsserver/src/ErrorMatcher.ts
- server/src/server.ts 8 additions, 6 deletionsserver/src/server.ts
... | ... | @@ -6,6 +6,7 @@ |
"publisher": "SeeBasTStick", | ||
"icon": "prob2-ui.png", | ||
"author": "Sebastian Stock", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SeeBasTStick/b-eventb-language-extension" | ||
... | ... | @@ -57,13 +58,13 @@ |
"languageServer.wdChecks": { | ||
"scope": "window", | ||
"type": "boolean", | ||
"default": "off", | ||
"default": "false", | ||
"description": "Option for WD Checks" | ||
}, | ||
"languageServer.strictChecks": { | ||
"scope": "window", | ||
"type": "boolean", | ||
"default": "off", | ||
"default": "false", | ||
"description": "Option for stricter Checks" | ||
} | ||
} | ||
... | ... | @@ -77,21 +78,23 @@ |
"test": "sh ./scripts/e2e.sh" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^12.12.38", | ||
"@typescript-eslint/parser": "^2.3.0", | ||
"eslint": "^6.4.0", | ||
"mocha": "^6.2.2", | ||
"typescript": "^3.8.3", | ||
"@types/mocha": "^7.0.2", | ||
"@types/node": "^14.0.4", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"eslint": "^7.0.0", | ||
"mocha": "^7.1.2", | ||
"typescript": "^3.9.3", | ||
"vscode": "^1.1.37" | ||
}, | ||
"dependencies": { | ||
"@types/ndjson": "^1.5.0", | ||
"@types/stream-to-array": "^2.3.0", | ||
"@types/vscode": "^1.45.1", | ||
"error": "^10.3.0", | ||
"ndjson": "^1.5.0", | ||
"path": "^0.12.7", | ||
"stream-to-array": "^2.3.0", | ||
"ts-xor": "^1.0.8", | ||
"vscode-api": "0.0.0", | ||
"vscode-uri": "^2.1.1" | ||
} | ||
... | ... |
Please register or sign in to comment