31.0.0-beta.5 • Published 5 years ago

eslint-plugin-matt v31.0.0-beta.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

eslint-plugin-shopify

NPM version Circle CI David DM

Shopify’s ESLint rules and configs.

Installation

You'll first need to install ESLint:

With Yarn

yarn add --dev eslint

With npm

$ npm i eslint --save-dev

Next, install eslint-plugin-shopify:

With Yarn

yarn add --dev eslint-plugin-shopify

With npm

$ 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

Shopify’s ESLint configs come bundled in this package. In order to use them, you simply extend the relevant configuration in your project’s .eslintrc. For example, the following will extend the ESNext (ES2015 and later) config:

{
  "extends": "plugin:shopify/esnext"
}

If you are working on an ES5 project, extend the ES5 version of the configuration:

{
  "extends": "plugin:shopify/es5"
}

You can also add some "augmenting" configs on top of the "core" config by extending an array of linting configs. For example, this package provides a jest config, which can be added to the ESNext config with the following configuration file:

{
  "extends": [
    "plugin:shopify/esnext",
    "plugin:shopify/jest"
  ]
}

Likewise, if you are using React, extend the React version of the configuration to use the React-specific rules provided by that configuration file:

{
  "extends": [
    "plugin:shopify/esnext",
    "plugin:shopify/react"
  ]
}

Provided configurations

This plugin provides the following core configurations:

  • esnext: Use this for anything written with ES2015+ features.
  • typescript: Use this for Typescript projects.
  • es5: Use this for legacy projects.

This plugin also provides the following tool-specific configurations, which can be used on top of the core configurations:

  • graphql: Use this for projects that use graphql-config for graphql validation.
  • polaris: Use this for projects that use Shopify’s React Polaris components.
  • prettier: Use prettier for consistent formatting. Extending this Shopify's prettier config will override the default Shopify eslint rules in favor of prettier formatting. Prettier must be installed within your project, as eslint-plugin-shopify does not provide the dependency itself.
  • typescript-prettier: Use prettier on typescript projects. Prettier must be installed within your project, as eslint-plugin-shopify does not provide the dependency itself.
  • webpack: Use this for projects built by webpack.

node

If you are working on a node module, we also provide the node configuration for you. Note that this configuration needs to be used in conjunction with one of the core configurations (either es5 or esnext). If you plan to transpile your code using Babel, use the esnext config. If you do not plan to do so, the config you choose depends on the version of node you wish to support, and how many ESNext features are natively available in that version. You can see a detailed list of what version of node supports what new JavaScript features by visiting http://node.green.

A node project that will use Babel for transpilation would need the following ESLint config:

{
  "extends": [
    "plugin:shopify/esnext",
    "plugin:shopify/node"
  ]
}

Plugin-Provided Rules

This plugin provides the following custom rules, which are included as appropriate in all core linting configs:

Creating New Rules

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 can be run using npm test.