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

eslint-plugin-shopify

Package Overview
Dependencies
Maintainers
2
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-shopify

Shopify-specific ESLint rules.

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4K
increased by1.14%
Maintainers
2
Weekly downloads
 
Created
Source

eslint-plugin-shopify

Build status NPM version

Shopify-specific ESLint rules.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-shopify:

$ npm install eslint-plugin-shopify --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-shopify globally.

Usage

Add shopify to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": [
    "shopify"
  ]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "shopify/require-flow": 2
  }
}

Supported Rules

  • require-flow: Requires (or disallows) @flow declarations be present at the top of each file.
  • binary-assignment-parens: Requires (or disallows) assignments of binary, boolean-producing expressions to be wrapped in parentheses.

Contributing

The easiest way to add new rules is to use the ESLint Yeoman generator. Running yo eslint:rule from the root of this project should add the required main file, docs, and test for your new rules. Make sure that these are all filled out and consistent with the other rules before merging. All tests (including linting) can be run using npm test.

Changelog

2.1.0 - January 19, 2016

Add explicit option to require-flow rule to support either @flow or @noflow.

2.0.1 - October 20, 2015

Made the require-flow rule stricter on the definition of a @flow directive.

2.0.0 - October 6, 2015

Added binary-assignment-parens rule.

1.0.2 - September 21, 2015

Fixed issue with recursive references in the lint config.

1.0.1 - September 21, 2015

Fixed package URLs.

1.0.0 - September 21, 2015

  • Initial commit.

Keywords

FAQs

Package last updated on 19 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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