26.0.1 • Published 6 years ago

eslint-plugin-minoris v26.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

eslint-plugin-minoris

NPM version Circle CI David DM

Minoris’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-minoris:

With Yarn

yarn add --dev eslint-plugin-minoris

With npm

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

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

Usage

Minoris’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:minoris/esnext"
}

If using React, extend the React version of the configuration (which adds some React-specific rules to those in the ESNext config):

{
  "extends": "plugin:minoris/react"
}

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

{
  "extends": "plugin:minoris/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 lodash linting config, which can be added to the ESNext config with the following configuration file:

{
  "extends": [
    "plugin:minoris/esnext",
    "plugin:minoris/lodash",
    "plugin:minoris/mocha"
  ]
}

Provided configurations

This plugin provides the following core configurations:

  • esnext: Use this for anything written with ES2015+ features.
  • react: Use this for React 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:

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:minoris/esnext",
    "plugin:minoris/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.