tslint-lines-between-class-members

1.3.6 • Public • Published

tslint-lines-between-class-members

npm CircleCI

Custom rule for TSLint to enforce blank lines between class methods - achieves a similar thing to lines-between-class-members in ESLint

Install

# yarn 
yarn add --dev tslint-lines-between-class-members
 
# npm 
npm install --save-dev tslint-lines-between-class-members

Configuration

Update your tslint.json config file, adding the new rules directory and the new rule
You can choose to specify the exact number of lines you want between methods, or leave it to default to just checking there is at least 1

{
  "rulesDirectory": [
    "node_modules/tslint-lines-between-class-members"
  ],
  "rules": {
    "lines-between-class-members": true,
  }
}

Config Examples

At least one line:

"lines-between-class-members"true

Exactly one line:

"lines-between-class-members"[true, 1]

Exactly twenty two lines:

"lines-between-class-members"[true, 22]

Package Sidebar

Install

npm i tslint-lines-between-class-members

Weekly Downloads

3,541

Version

1.3.6

License

ISC

Unpacked Size

23.6 kB

Total Files

8

Last publish

Collaborators

  • chinchiheather