Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

uber-dot-arcanist

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uber-dot-arcanist - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

.arcanist/uber-standard/__phutil_library_init__.php

2

package.json
{
"name": "uber-dot-arcanist",
"version": "1.2.0",
"version": "1.3.0",
"description": "Uber's .arcanist folder as an npm module",

@@ -5,0 +5,0 @@ "main": "dot-arcanist.js",

@@ -11,6 +11,7 @@ uber-dot-arcanist

Currently, this module contains only two arcanist plugins:
Currently, this module contains four arcanist plugins:
* tap
* [jenkinsphoo][jenkinsphoo]
* [lint-trap][lint-trap]
* [jenkinsphoo][jenkinsphoo] (deprecated)
* [lint-trap][lint-trap] (deprecated)
* [uber-standard][uber-standard]

@@ -51,3 +52,3 @@ Usage

{
"load": [".arcanist/tap", ".arcanist/jenkinsphoo", "arcanist/jshintlinter"]
"load": [".arcanist/tap", "arcanist/uber-standard"]
}

@@ -65,4 +66,3 @@ ```

"node_modules/uber-dot-arcanist/.arcanist/tap",
"node_modules/uber-dot-arcanist/.arcanist/jenkinsphoo",
"node_modules/uber-dot-arcanist/.arcanist/lint-trap"
"node_modules/uber-dot-arcanist/.arcanist/uber-standard"
]

@@ -78,4 +78,4 @@ }

"linters": {
"lint-trap": {
"type": "lint-trap"
"uber-standard": {
"type": "uber-standard"
}

@@ -144,1 +144,2 @@ }

[lint-trap]: https://github.com/uber/lint-trap
[uber-standard]: https://github.com/uber/standard

@@ -21,7 +21,11 @@ 'use strict';

test('dummy test', function t(assert) {
assert.plan(3);
assert.plan(5);
['tap', 'jenkinsphoo'].forEach(function assertPluginExists(name) {
var plugins = ['tap', 'jenkinsphoo', 'lint-trap', 'uber-standard'];
plugins.forEach(assertPluginExists);
function assertPluginExists(name) {
assert.ok(hasPlugin(name), assertMessage(name));
});
}

@@ -28,0 +32,0 @@ var throwsMessage = 'Calling uber-dot-arcanist programmatically throws';

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