@tsslint/typescript-plugin
Advanced tools
Comparing version
11
index.js
@@ -159,7 +159,14 @@ "use strict"; | ||
].map(([error, category]) => { | ||
let messageText; | ||
if (error.id === 'config-import-error') { | ||
messageText = `Error importing config file.`; | ||
} | ||
else { | ||
messageText = `Error building config file.`; | ||
} | ||
const diag = { | ||
category, | ||
source: 'tsslint', | ||
code: 0, | ||
messageText: `Failed to build/load TSSLint config. (${error.text})`, | ||
code: error.id ?? 0, | ||
messageText, | ||
file: jsonConfigFile, | ||
@@ -166,0 +173,0 @@ start: configOptionSpan.start, |
{ | ||
"name": "@tsslint/typescript-plugin", | ||
"version": "1.1.4", | ||
"version": "1.1.5", | ||
"license": "MIT", | ||
@@ -15,8 +15,8 @@ "files": [ | ||
"dependencies": { | ||
"@tsslint/core": "1.1.4" | ||
"@tsslint/core": "1.1.5" | ||
}, | ||
"devDependencies": { | ||
"@tsslint/config": "1.1.4" | ||
"@tsslint/config": "1.1.5" | ||
}, | ||
"gitHead": "03d4e7480fc96c6322d436d34a4af73cb5bc25f2" | ||
"gitHead": "7aa702de750c8efee2681fbabafcab3da344df03" | ||
} |
11336
2.65%218
3.32%+ Added
+ Added
- Removed
- Removed
Updated