eslint-plugin-empproposal

0.0.3 • Public • Published

eslint-plugin-proposal

npm (tag) Travis (.org) branch node npm peer dependency version npm GitHub

some rules for ECMAScript proposal. eg: class property.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-proposal:

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

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

Usage

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

{
  "plugins": [
    "proposal"
  ]
}

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

{
  "rules": {
    "proposal/class-property-space-infix-ops": "error"
  }
}

List of supported rules

Shareable configurations

Recommended

This plugin exports a recommended configuration.

To enable this configuration use the extends property in your .eslintrc config file:

{
  "extends": [
    "plugin:proposal/recommended"
  ]
}

The rules enabled in this configuration are:

Package Sidebar

Install

npm i eslint-plugin-empproposal

Weekly Downloads

2

Version

0.0.3

License

MIT

Unpacked Size

20.7 kB

Total Files

8

Last publish

Collaborators

  • doerme