Socket
Socket
Sign inDemoInstall

eslint-teamcity

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-teamcity - npm Package Compare versions

Comparing version 2.0.1 to 2.1.0

8

package.json
{
"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 => {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc