uber-dot-arcanist
Advanced tools
Comparing version 1.2.0 to 1.3.0
{ | ||
"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 |
10
test.js
@@ -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'; |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
22067
19
33
141
0