0.1.0 • Published 4 years ago

eslint-plugin-ext v0.1.0

Weekly downloads
713
License
MIT
Repository
github
Last release
4 years ago

eslint-plugin-ext

eslint extended rules

Install

npm i eslint-plugin-ext -D

Edit .eslintrc.json:

{
  "plugins": [
    "ext"
  ],

  "rules": {
    "ext/lines-between-object-properties": ["error", "always", { "exceptBetweenSingleLines": true }]
  }
}

Rules

lines-between-object-properties

require or disallow an empty line between object properties.

Modified from lines-between-class-members.

It has same options as lines-between-class-members, and one extra option exceptBetweenSingleLines.

/* eslint ext/lines-between-object-properties: ["error", "always", { "exceptBetweenSingleLines": true }] */

// bad
const foo = {
  a: 1,
  b: 2,
  c() {
  },
  d() {
  }
}

// good
const foo = {
  a: 1,
  b: 2,

  c() {
  },

  d() {
  }
}

License

MIT