eslint-teamcity
Advanced tools
Comparing version 2.0.1 to 2.1.0
{ | ||
"name": "eslint-teamcity", | ||
"version": "2.0.1", | ||
"version": "2.1.0", | ||
"description": "An ESLint formatter plugin for TeamCity", | ||
@@ -33,6 +33,6 @@ "main": "index.js", | ||
"chai": "^4.1.0", | ||
"coveralls": "^3.0.1", | ||
"coveralls": "^3.0.2", | ||
"eslint": "^4.19.1", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-plugin-import": "^2.12.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"husky": "^0.14.3", | ||
@@ -42,3 +42,3 @@ "istanbul": "^0.4.5", | ||
"mocha": "^4.1.0", | ||
"prettier": "^1.13.2", | ||
"prettier": "^1.14.2", | ||
"shelljs": "^0.8.2", | ||
@@ -45,0 +45,0 @@ "sinon": "^4.5.0" |
@@ -10,3 +10,3 @@ # eslint-teamcity | ||
[TeamCity](https://www.jetbrains.com/teamcity/) build error format. Tested with | ||
TeamCity 9.1.x/10.0.x/2017 and ESLint 1/2/3/4. | ||
TeamCity 9.1.x/10.0.x/2017 and ESLint 1+ | ||
@@ -13,0 +13,0 @@ ## Installation |
@@ -0,1 +1,2 @@ | ||
const path = require('path'); | ||
const utils = require('../utils'); | ||
@@ -24,3 +25,3 @@ | ||
const filePath = utils.escapeTeamCityString(result.filePath); | ||
const filePath = utils.escapeTeamCityString(path.relative(process.cwd(), result.filePath)); | ||
@@ -27,0 +28,0 @@ outputList.push(`##teamcity[testStarted name='${reportName}: ${filePath}']`); |
@@ -0,1 +1,2 @@ | ||
const path = require('path'); | ||
const utils = require('../utils'); | ||
@@ -22,3 +23,3 @@ | ||
const filePath = utils.escapeTeamCityString(result.filePath); | ||
const filePath = utils.escapeTeamCityString(path.relative(process.cwd(), result.filePath)); | ||
@@ -25,0 +26,0 @@ messages.forEach(messageObj => { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36671
728