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

eslint-plugin-spruce

Package Overview
Dependencies
Maintainers
1
Versions
964
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-spruce - npm Package Compare versions

Comparing version 8.13.1-pre-e6b56232.0 to 8.13.1-pre-f8851f8f.0

12

CHANGELOG.md

@@ -6,10 +6,18 @@ # Change Log

## [8.13.1-pre-e6b56232.0](https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/compare/v8.13.0...v8.13.1-pre-e6b56232.0) (2019-03-22)
## [8.13.1-pre-f8851f8f.0](https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/compare/v8.13.0...v8.13.1-pre-f8851f8f.0) (2019-03-29)
**Note:** Version bump only for package eslint-plugin-spruce
### Bug Fixes
* **lint:** Update dependencies for shared lint config ([89b255f](https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/commit/89b255f))
### Features
* **lint:** Enforce that query/mutate must be called with an object of options. ([78d2c3f](https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/commit/78d2c3f))
# [8.13.0](https://github.com/sprucelabsai/workspace.sprucebot-skills-kit/compare/v8.12.0...v8.13.0) (2019-03-20)

@@ -16,0 +24,0 @@

@@ -14,2 +14,11 @@ const rules = [

if (node.callee.name === rule.method) {
if (node.arguments[0].type !== 'ObjectExpression') {
return context.report(
node,
`The first argument to \`${
rule.method
}\` must be an object of options.`
)
}
const QueryOption = node.arguments[0].properties.find(

@@ -16,0 +25,0 @@ o => o.key.name === rule.option

4

package.json

@@ -6,3 +6,3 @@ {

},
"version": "8.13.1-pre-e6b56232.0",
"version": "8.13.1-pre-f8851f8f.0",
"description": "ESLint plugin for Spruce Javascript projects",

@@ -21,3 +21,3 @@ "author": "George Pantazis <gcpantazis@gmail.com>",

},
"gitHead": "a5b546d260b951bc03bc01892b2626dae91f265c"
"gitHead": "a2283aa80351911ade46d1b2315bed1845c77339"
}
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