1.0.0 • Published 5 years ago

eslint-plugin-irm v1.0.0

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

eslint-plugin-irm

LICENSE

A plugin for eslint.

For starting to use eslint quickly and conveniently in your project, you can just install the eslint and this package.

Installation

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

Usage

This plugin consists of eslint-config-standard and its peerDependencies. Avoiding ignoring to install so many peerDependencies, we can just install this one pkg.

And we can create basic config file like following.

Example .eslintrc.js:

module.exports = {
  root: true,
  extends: [
    "plugin:irm/base"
  ],
  // put your custom rules here
  rules: {}
};

Progressive config

This plugin is designed to contain progressive configs which based on the former config. And that can let us to use appropriate config in different circumstance.

Configs:

  • eslint-plugin-irm/base